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=-nationality_name
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=-nationality_name",
    "results": [
        {
            "id": 48,
            "name": "Afghanistan",
            "alpha_2_code": "AF",
            "alpha_3_code": "AFG",
            "nationality_name": "Afghan",
            "nationality_name_composed": "Afghani"
        }
    ]
}