Number of results

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

Example - /config/space_station_statuses/?limit=2

Format

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

Help

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

GET /2.3.0/config/space_station_statuses/?format=api&ordering=-name
HTTP 200 OK
Allow: GET
Content-Type: application/json
Vary: Accept

{
    "count": 3,
    "next": null,
    "previous": null,
    "results": [
        {
            "id": 2,
            "name": "De-Orbited"
        },
        {
            "id": 3,
            "name": "Decommissioned"
        },
        {
            "id": 1,
            "name": "Active"
        }
    ]
}