Get age groups

Returns the list of IHME age groups

GET /age-groups

Parameters

No parameters

Response

{
    "data": [ <AgeGroup> ]
}

Example

GET /age-groups
{
    "data": {
        {"id": 22, "name": "All Ages", "order": 1},
        {"id": 27, "name": "Age-standardized", "order": 2},
        ...,
        {"id": 283, "name": "Unknown", "order": 409}
    }
}

Last updated