Skip to content

Regions API

Available service regions

Endpoints

MethodPathDescription
GET/v1/regionsList regions
GET/v1/regions/{region_code}Get region
GET/v1/regions/{region_code}/pricingGet pricing

GET /v1/regions

List regions

Get available regions with service availability (storage, database, VPS, LLM).

Response:

FieldTypeDescription
regionsarray
totalinteger

Example:

bash
curl https://api.wayscloud.services/v1/regions \
  -H "X-API-Key: YOUR_API_KEY"

GET /v1/regions/

Get region

Get region details: available services, location, and pricing.

Response:

FieldTypeDescription
codestring
namestring
countrystring
available_servicesarray
statusstringValues: active, maintenance, deprecated

Example:

bash
curl https://api.wayscloud.services/v1/regions/{region_code} \
  -H "X-API-Key: YOUR_API_KEY"

GET /v1/regions/{region_code}/pricing

Get pricing

Get service prices for a specific region.

Response:

FieldTypeDescription
regionstring
currencystring
servicesobject

Example:

bash
curl https://api.wayscloud.services/v1/regions/{region_code}/pricing \
  -H "X-API-Key: YOUR_API_KEY"

WAYSCloud AS