Get lists of awards

You can get lists of awards:

Which returns a response like this:

{
    meta: {
        count: 12345678,
        db_response_time_ms: 50,
        page: 1,
        per_page: 25,
        groups_count: null
    },
    results: [
        // list of Award objects
    ]
}

Page and sort awards

By default we return 25 results per page. You can change this default and page through awards with the per_page and page parameters:

You can sort results with the sort parameter:

Sample awards

You can use sample to get a random sample of awards. Read more about sampling and how to add a seed here.

Select fields

You can use select to limit the fields that are returned in a list of awards. More details are here.

Last updated