redu.cloud API
Create and manage redu.cloud infrastructure programmatically.
The API is the primary developer interface for v1. Use it to manage servers, images, networks, API keys, and related cloud resources.
Start here
Core resources
Base URL
All cloud API endpoints are under:
https://api.redu.cloud/cloud/v1Authentication
Most endpoints require an API key.
Generate one in the Console:
https://console.redu.cloud/category/user/api-keysSend your API key using the x-api-key header:
x-api-key: YOUR_API_KEYExample request:
curl https://api.redu.cloud/cloud/v1/me \
-H "x-api-key: YOUR_API_KEY"See Authentication for full examples.
Conventions
Content type
All requests and responses use JSON.
Content-Type: application/json
Accept: application/jsonTimestamps
All timestamps are ISO 8601 UTC.
2026-02-18T11:02:12ZResource IDs
Resource IDs are opaque strings. Do not attempt to parse or infer meaning from them.
Pagination
List endpoints return:
{
"items": [],
"next_cursor": null
}If next_cursor is not null, pass it as cursor in the next request.
Health check
Check API availability:
curl https://api.redu.cloud/healthResponse:
{
"status": "ok"
}Next steps
Last updated on