API
Overview

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/v1

Authentication

Most endpoints require an API key.

Generate one in the Console:

https://console.redu.cloud/category/user/api-keys

Send your API key using the x-api-key header:

x-api-key: YOUR_API_KEY

Example 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/json

Timestamps

All timestamps are ISO 8601 (UTC).

2026-02-18T11:02:12Z

Resource 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/health

Response:

{
  "status": "ok"
}

Next Steps