Get all continents

GET /continents

Get a list of all continents

Responses

  • 200 application/json

    List of continents matching filter

    Hide response attributes Show response attributes object
  • API key is missing or invalid

  • [FREE PLANS ONLY] Request Quota Exceeded

GET /continents
curl \
 -X GET https://api.tellusdb.com/v1/continents?token=api_token_value
Response examples (200)
{
  "result": [
    {
      "key": "AF",
      "name": "Africa"
    },
    {
      "key": "AN",
      "name": "Antarctica"
    },
    {
      "key": "AS",
      "name": "Asia"
    },
    {
      "key": "EU",
      "name": "Europe"
    },
    {
      "key": "NA",
      "name": "North America"
    },
    {
      "key": "OC",
      "name": "Oceania"
    },
    {
      "key": "SA",
      "name": "South America"
    }
  ],
  "count": 7,
  "time_taken_ms": 1.3892211
}