Skip to main content
POST
/
api
/
domclick
/
geo
/
suggest
/domclick/geo/suggest
curl --request POST \
  --url https://api.anysite.io/api/domclick/geo/suggest \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "region": "<string>",
  "timeout": 300,
  "kind": "district"
}
'
[
  {
    "aid": 123,
    "name": "<string>",
    "@type": "@domclick_geo_location",
    "parent": "<string>",
    "color": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
region
string
required

Region GUID to list locations within.

Example:

"1d1463ae-c80f-4d19-9331-a1b68a85b553"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
kind
enum<string>
default:district

Location kind to list.

Available options:
district,
subway

Response

Successful Response

aid
integer
required
name
string
required
@type
string
default:@domclick_geo_location
parent
string | null
color
string | null