Number of results

Use limit to control the number of objects in the response (max 100)

Example - /config/countries/?limit=2

Format

Switch to JSON output - /config/countries/?format=json

Help

Find all the FAQs and support links on the documentation homepage - ll.thespacedevs.com/docs

GET /2.3.0/config/countries/?format=api&offset=100&ordering=-alpha_2_code
HTTP 200 OK
Allow: GET
Content-Type: application/json
Vary: Accept

{
    "count": 101,
    "next": null,
    "previous": "https://ll.thespacedevs.com/2.3.0/config/countries/?format=api&limit=10&offset=90&ordering=-alpha_2_code",
    "results": [
        {
            "id": 17,
            "name": "Unknown",
            "alpha_2_code": "??",
            "alpha_3_code": "???",
            "nationality_name": "Earthling",
            "nationality_name_composed": "Earthling"
        }
    ]
}