Skip to main content
The RelytONE API enables you to manage your Relyt projects programmatically. View all available methods in the API reference. This is a REST API that provides:
  • Resource-oriented URLs
  • JSON-encoded request and response bodies
  • Standard HTTP response codes and verbs

Authentication

Authenticate requests using API keys with bearer token authentication. Learn how to manage API keys. Include your API key in the Authorization header:
curl --request POST \
  --url https://relytone.data.cloud/api/v1/user/api-keys \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
    "name": "<string>",
    "description": "<string>"
  }'

Base URL

All API requests use this base URL:
https://relytone.data.cloud/api/v1
Common Endpoints:
  • List all organizations: https://relytone.data.cloud/api/v1/organizations
  • List all projects: https://relytone.data.cloud/api/v1/projects

Next Steps

Explore the API reference to test and execute API requests directly.
I