eggniss.com API
Powerful, flexible, and scalable API to integrate eggniss.com features into your applications.
Getting Started
All API requests must authenticate using an API key. You can find your API key in your account settings.
curl -X GET "https://api.eggniss.com/v1/data" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"
Authentication
Uses Bearer Token authentication via standard HTTPS headers. All request signatures are validated using HMAC-SHA256.
Header: Authorization
Schema: Bearer2
API Key: YOUR_API_KEY
Endpoints
GET /api/v1/data
Retrieve data based on query parameters. Returns paginated results with metadata.
Parameters:
- query (string)
- page (int)
- limit (int, max 100)
Response Example:
{ "results": [...], "meta": {"page":1,"limit":20,"total":420} }
GET /api/v1/analytics
Retrieve analytics insights and performance metrics for your application.
Parameters:
- start_date (isoformat)
- end_date (isoformat)
- groupBy (string, optional)
Response Example:
{ "metrics": {"users":420,"revenue":2450.40,"active":true} }
Need Support?
Our engineering team is available to help you integrate and troubleshoot the API.
Contact Support