Egegas API Reference

Full-featured low-code API platform for creating reactive web services. Use our powerful endpoints to build your next application.

Authentication

All API requests must include the following in the Authorization header:

Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.xxxxxx

Token must be included in every request header

Endpoints

GET /api/v1/resources
Fetch all resources with optional filters

Query Parameters

limit (number)

Maximum number of items to return

offset (number)

Offset for pagination

Example Request

GET https://egegasasasasasasasasasasasasasasasasasasasasasasasasa/api/v1/resources?limit=10

Example Response

{ "status": "success", "resources": ["data1", "data2"], "metadata": {"total": 120} }
POST /api/v1/resources
Create a new resource instance

Request Body

{ "name": "string", "value": "any_type" }