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
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",
    "results": [
        {
            "id": 101,
            "name": "Panama",
            "alpha_2_code": "PA",
            "alpha_3_code": "PAN",
            "nationality_name": "Panamanian",
            "nationality_name_composed": "Panamo"
        }
    ]
}