Number of results

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

Example - /config/program_types/?limit=2

Format

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

Help

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

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

{
    "count": 8,
    "next": null,
    "previous": null,
    "results": [
        {
            "id": 1,
            "name": "Unknown"
        },
        {
            "id": 2,
            "name": "Human Spaceflight"
        },
        {
            "id": 3,
            "name": "Communication Constellation"
        },
        {
            "id": 4,
            "name": "Navigation Constellation"
        },
        {
            "id": 5,
            "name": "Exploration"
        },
        {
            "id": 6,
            "name": "Education"
        },
        {
            "id": 7,
            "name": "Technology"
        },
        {
            "id": 8,
            "name": "Earth Observation"
        }
    ]
}