Powerful RESTful endpoints designed to integrate egeGasas into your workflow.
Create your free account to get an API key. You'll find your credentials in the dashboard settings.
API Key: xk2s4k9d8f1hj1j0j6n9p202z0t0r2w1p0
Type: Developer
All requests require the following header with your API key for authentication:
Authorization: Bearer {API_KEY}
Here's a sample GET request to fetch user data:
GET /api/v1/users/12345
Authorization: Bearer xk2s4k9d8f1hj1j0j6n9p202z0t0r2w1p0
You'll receive a 200 OK status with the requested data in JSON format:
{
"id": "12345",
"name": "John Doe",
"email": "user@example.com"
}
Use the bearer token system for secure access to all endpoints. API keys are created in your dashboard.
Authorization: Bearer <your-api-key>
For third-party integrations, use the OAuth 2.0 protocol with secure token exchanges.
POST /auth/token
grant_type: client_credentials
All endpoints are protected with rate limiting to prevent abuse and ensure stability.
Retrieve a list of your projects.
GET https://api.egegasas.com/api/v1/projects
Authorization: Bearer API_KEY
Response status: 200 OK
Create a new project.
POST https://api.egegasas.com/api/v1/projects
Authorization: Bearer API_KEY
Content-Type: application/json
{
"name": "My New Project",
"description": "First egeGasas Project"
}
Response status: 201 Created
Get your API key and start building something amazing with egeGasas.