Returns a breakdown of obligations by award category (contracts, IDVs, grants, loans, direct payments, other) within the requested fiscal year (or current FY).

Documentation for this endpoint can be found here.

GET /api/v2/agency/012/obligations_by_award_category/
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Cache-Trace: no-cache
Content-Type: application/json
Vary: Accept

{
    "total_aggregated_amount": 96180655386.97,
    "results": [
        {
            "category": "contracts",
            "aggregated_amount": 3008514114.71
        },
        {
            "category": "direct_payments",
            "aggregated_amount": 66597931012.64
        },
        {
            "category": "grants",
            "aggregated_amount": 25690235495.06
        },
        {
            "category": "idvs",
            "aggregated_amount": 16357473.72
        },
        {
            "category": "loans",
            "aggregated_amount": 108078966.85
        },
        {
            "category": "other",
            "aggregated_amount": 759538324.32
        }
    ]
}