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/?format=api
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Cache-Trace: no-cache
Content-Type: application/json
Vary: Accept

{
    "total_aggregated_amount": 85504972128.48,
    "results": [
        {
            "category": "contracts",
            "aggregated_amount": 3848571608.41
        },
        {
            "category": "direct_payments",
            "aggregated_amount": 45137278893.27
        },
        {
            "category": "grants",
            "aggregated_amount": 35467553006.99
        },
        {
            "category": "idvs",
            "aggregated_amount": 15959931.25
        },
        {
            "category": "loans",
            "aggregated_amount": 114893407.32
        },
        {
            "category": "other",
            "aggregated_amount": 920715281.17
        }
    ]
}