Utils
List Regions
Returns regions
GET
/
regions
Authorization
curl --request GET \
--url https://api.evecloud.xyz/regions
{
"data": [
{
"active": true,
"coordinates": {},
"datacenters": [
"us-east-1a",
"us-east-1b",
"us-east-1c"
],
"id": "us-east-1",
"locations": {},
"plans": [
"developer",
"teams",
"enterprise"
],
"provider": "Amazon Web Services",
"status": "AVAILABLE"
}
],
"meta": {
"limit": 10,
"page": 1,
"total": 1
}
}
Authorizations
Authorization
string
headerrequiredBearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200 - application/json
data
object[]
meta
object
Was this page helpful?
curl --request GET \
--url https://api.evecloud.xyz/regions
{
"data": [
{
"active": true,
"coordinates": {},
"datacenters": [
"us-east-1a",
"us-east-1b",
"us-east-1c"
],
"id": "us-east-1",
"locations": {},
"plans": [
"developer",
"teams",
"enterprise"
],
"provider": "Amazon Web Services",
"status": "AVAILABLE"
}
],
"meta": {
"limit": 10,
"page": 1,
"total": 1
}
}