Comprehensive guide to integrating with the egeGasas platform using our RESTful API
Start BuildingBegin integrating with egeGasas by creating an API key in your dashboard. All endpoints are rate-limited per your plan.
// Install SDK
npm install egegasas-sdk
// Initialize
const client = new EgegasasClient('{YOUR_API_KEY}')
// Make request
await client.createProject('My New Project')
All requests require an API key in the Authorization header. You can create an API key in your dashboard or via the CLI.
curl
GET https://api.egegasas.com/project?
-H 'Authorization: Bearer YOUR_API_KEY'
For third-party integrations, we support OAuth2 authorization flows including:
POST /api/v1/projects Authorization: Bearer {token} Content-Type: application/json { "name": "Example Project", "type": "standard", "description": "Test project for API demonstration" }
Response status 201 with project metadata
GET /api/v1/tasks?status=active Authorization: Bearer {token} Accept: application/json
Returns paginated list of active tasks
DELETE /api/v1/workspaces/1234 Authorization: Bearer {token} Accept: application/json
Returns 204 on successful deletion
Our documentation team is here to help clarify any integration questions you may have.