Utils
List Instance Types
Returns instances types
GET
/
instances
Authorization
curl --request GET \
--url https://api.evecloud.xyz/instances
{
"data": [
{
"active": true,
"category": "e1",
"description": "null",
"name": "e1.nano",
"plans": [
"developer",
"teams",
"enterprise"
],
"price": {},
"resources": {}
}
],
"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/instances
{
"data": [
{
"active": true,
"category": "e1",
"description": "null",
"name": "e1.nano",
"plans": [
"developer",
"teams",
"enterprise"
],
"price": {},
"resources": {}
}
],
"meta": {
"limit": 10,
"page": 1,
"total": 1
}
}