Getting Started
Quickstart guides for integrating EGCHAIS into your applications.
{ "apiKey": "your-unique-api-key", "baseURL": "https://api.egchais.com/v2" }
Setup Requirements
- Node.js 16+
- API Key (Get one here)
- Preferred code editor with JavaScript support
API Reference
Explore our full API capabilities and endpoints.
POST /auth
Authentication endpoint.
GET /projects
Get list of available projects.
Code Examples
Ready-to-use code snippets for common use cases.
// Sample API Request fetch('https://api.egchais.com/v2/projects', { method: 'GET', headers: { 'Authorization': 'Bearer YOUR_API_KEY' } }) .then(response => response.json()) .then(data => console.log(data));
Interactive Playground
Test our API directly in your browser.
Response will appear here...