Full documentation for NELGIFKA's RESTful API endpoints, authentication, and request format standards.
curl -H "Authorization: Bearer YOUR_API_KEY" -X GET https://api.nelgifka.com/docs/v1/endpoints
All authenticated endpoints require a Bearer token from your Dashboard. Tokens never expire but can be revoked.
Retrieve list of all available endpoints and their properties.
GET https://api.nelgifka.com/v1/endpoint
{ "endpoint_1": { "description": "...", "method": "GET", "params": [] }, "endpoint_2": { ... } }
Register a new endpoint with documentation and access restrictions.
POST https://api.nelgifka.com/v1/endpoint
{ "title": "My Endpoint", "methods": ["GET"] }