API Playground
Interact with our APIs in real-time using this sandbox environment. Test endpoints, view responses, and see how our API works.
Choose an Endpoint
Request Body
{ "name": "My New App", "framework": "react", "region": "us-west-1" }
Interactive Console
{ "status": "success", "message": "Project created successfully", "id": "abc123xyz" }
Tip: Try modifying the parameters in the request body to see how the API responds.
Endpoint Documentation
GET
/api/v1/projects
List All Projects
Retrieves a list of projects associated with your organization.
GET /api/v1/projects
{
"organizationId": "org_123"
}
{
"projects": [...],
"nextPageToken": "abc123"
}
POST
/api/v1/deployments
Trigger Deployment
Starts a new deployment process for a specified project.
POST /api/v1/deployments
{
"projectId": "proj_456",
"environment": "staging"
}
{
"deploymentId": "deploy_789",
"status": "queued"
}
API Configuration
// api.config.js
export default {
// Base URL for API requests
baseUrl: 'https://api.nelgyfika.com/v1',
// Additional configurations
headers: {
'Content-Type': 'application/json',
'Authorization': 'Bearer YOUR_API_TOKEN'
},
// Request timeout in milliseconds
timeout: 5000
}
Ready to Build?
API Reference
Dive deeper into our full API documentation for detailed endpoint specifications.
View API Docs →