Number of results

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

Example - /config/languages/?limit=2

Format

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

Help

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

GET /2.3.0/config/languages/?format=api&offset=10&ordering=-id
HTTP 200 OK
Allow: GET
Content-Type: application/json
Vary: Accept

{
  "count": 13,
  "next": null,
  "previous": "https://lldev.thespacedevs.com/2.3.0/config/languages/?format=api&limit=10&ordering=-id",
  "results": [
    {
      "id": 3,
      "name": "Russian",
      "code": "ru"
    },
    {
      "id": 2,
      "name": "Chinese",
      "code": "zn"
    },
    {
      "id": 1,
      "name": "English",
      "code": "en"
    }
  ]
}