Build with our decentralized infrastructure using powerful REST and WebSockets APIs.
Our APIs provide full programmatic control over resources, deployment, and system interactions. Use them to integrate eggythith.tsas into your existing toolchains or build new applications directly on our decentralized infrastructure.
All API requests must include a valid API token for authentication using Bearer authorization.
Create new API keys from your account settings page. We recommend rotating tokens regularly for security.
Endpoints have tiered rate limits based on your plan. Check the X-RateLimit
header for remaining requests.
All endpoints follow the same authentication pattern and versioning convention.
CRUD operations for managing compute/storage resources across our global node network.
Stream real-time diagnostic and usage events from all active resources.
Get detailed consumption analytics and cost estimates for resources.
Start building with our APIs using your preferred language or framework.
fetch('https://eggythith.tsas/api/v1/resources', {
method: 'GET',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN'
}
})
.then(response => response.json())
.then(data => console.log(data));
import requests
response = requests.get(
'https://eggythith.tsas/api/v1/resources',
headers={'Authorization': 'Bearer YOUR_API_TOKEN'}
)
print(response.json())
Follow these steps to begin using our APIs in your applications.
Go to your account settings and generate a new Bearer token with appropriate permissions.
Use curl or Postman to verify authentication and test basic operations.
Add error handling and retry logic while integrating into your application codebase.