Redu Cloud API
Programmatic access to redu.cloud infrastructure.
The API mirrors the CLI and Console.
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 the Authentication page for full examples in cURL, Node.js, Python, and Go.
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
-
Make your first request: