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": 189194788266.57,
    "results": [
        {
            "category": "contracts",
            "aggregated_amount": 10867407833.03
        },
        {
            "category": "direct_payments",
            "aggregated_amount": 120834378478.35
        },
        {
            "category": "grants",
            "aggregated_amount": 53070392921.45
        },
        {
            "category": "idvs",
            "aggregated_amount": 64913061.42
        },
        {
            "category": "loans",
            "aggregated_amount": 341536989.1
        },
        {
            "category": "other",
            "aggregated_amount": 4016158983.61
        }
    ]
}