List data centers
GET/data_centers
Provides a full list of all data centers
Request
Responses
- 200
- 403
- 429
Provides a full list of all data centers
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
data_centers
object[]
required
id string
name string
permalink string
country string
{
"data_centers": [
{
"id": "string",
"name": "string",
"permalink": "string",
"country": "string"
}
]
}
403 error response
- application/json
- Schema
- Example (from schema)
Schema
code InternalAuthErrorEnum (string)
Possible values: [internal_auth_error
]
description string
detail
object
details string
{
"code": "internal_auth_error",
"description": "string",
"detail": {
"details": "string"
}
}
You have reached the rate limit for this type of request
- application/json
- Schema
- Example (from schema)
Schema
code RateLimitReachedEnum (string)
Possible values: [rate_limit_reached
]
description string
detail
object
total_permitted integer
The total number of requests per minute that are permitted
{
"code": "rate_limit_reached",
"description": "string",
"detail": {
"total_permitted": 0
}
}
Loading...