API Documentation

Powerful and flexible APIs to integrate elenozxa into your workflows.

Authentication

Use an API key in the Authorization header with Bearer auth.


curl -X GET "https://api.elenozxa.com/v1/workspaces" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"

                

๐Ÿ” Keys can be generated in your account settings.

/v1/workspaces

Manage your workspaces: create, list, or retrieve workspace details.

GET /v1/workspaces - List workspaces
POST /v1/workspaces - Create workspace

/v1/integrations

Connect with third-party tools and manage integration settings.

GET /v1/integrations - List integrations
POST /v1/integrations/{id}/disable - Disable integration

Quick Start Example

Use the elenozxa API to automate your workflows and integrate with popular tools.

Example Response (200 OK)

{
  "id": "ws_1234567890",
  "name": "Main Workspace",
  "created_at": "2025-09-30T14:30:00Z",
  "features": {
    "cloud_sync": true,
    "api_access": true
  }
}