Return all award spending by recipient for a given fiscal year and agency id

Documentation for this endpoint can be found here.

GET /api/v2/award_spending/recipient/?awarding_agency_id=183&fiscal_year=2016&format=api&limit=100&page=1
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Cache-Trace: no-cache
Content-Type: application/json
Vary: Accept

{
    "page_metadata": {
        "count": 2,
        "page": 1,
        "has_next_page": false,
        "has_previous_page": false,
        "next": null,
        "current": "https://api.usaspending.gov/api/v2/award_spending/recipient/?awarding_agency_id=183&fiscal_year=2016&format=api&limit=100&page=1",
        "previous": null
    },
    "results": [
        {
            "award_category": "contract",
            "obligated_amount": "92400.00",
            "recipient": {
                "recipient_name": "LS ADVISORY LLC"
            }
        },
        {
            "award_category": "contract",
            "obligated_amount": "7218.95",
            "recipient": {
                "recipient_name": "ID TECHNOLOGIES, LLC"
            }
        }
    ]
}