API Reference

Discover how to integrate with our decentralized infrastructure API. Use our programmatic interface to deploy nodes, manage data, and monitor performance.

Authentication

Use API key authentication with Authorization: Bearer {API_KEY}


curl -H "Authorization: Bearer 123xyz" 
     -H "Content-Type: application/json"
     https://api.%CE%B5lln%CE%BB%CE%B2%CE%AC/deployments
            

Endpoints

GET /deployments

Retrieve all active deployments for authenticated user

Response:


{
  "status": "success",
  "data": [
    {
      "id": "deployment_123",
      "location": "ams1",
      "size": "16384",
      "created_at": "2025-09-14T23:22:05Z"
    }
  ]
}
                    

POST /deployments

Create new deployment instance


{
  "location": "nyc1",
  "size": "4096"
}
                

Rate Limiting

All API requests are rate limited to 1000 requests per minute. Use the X-RateLimit-Remaining header to monitor usage.