For the complete documentation index, see llms.txt. This page is also available as Markdown.

Country

All country endpoints

Get list of all countries

get
Authorizations
PRIVATE-TOKENstringRequired
Header parameters
RANGED-DATAstringOptional

Example header and default range: RANGED-DATA:start=0,results=25

Responses
200

OK

application/json
idinteger · integerRead-onlyRequired

The country ID

codestringRead-onlyRequired

The country code

namestringRead-onlyRequired

The country name

continentstringRead-onlyRequired

The continent name

get/v3/country
GET /v3/country HTTP/1.1
Host: api.i3d.net
PRIVATE-TOKEN: YOUR_API_KEY
Accept: */*
[
  {
    "id": 1,
    "code": "text",
    "name": "text",
    "continent": "text"
  }
]

Last updated

Was this helpful?