Build powerful integrations and custom experiences with our developer-friendly API.
Authenticate using your API key via request header: Authorization: Bearer YOUR_API_KEY
curl "https://eseniia.com/api/v1/data" \ -H "Authorization: Bearer YOUR_API_KEY"
Retrieve processed data from the Eseniia platform
GET
/api/v1/data
{ "data": [/* processed items */], "total": 100, "limit": 20, "page": 1 }
Create new resources with custom metadata
POST
/api/v1/resources
fetch('/api/v1/resources', { method: 'POST', headers: { 'Authorization': 'Bearer YOUR_API_KEY', 'Content-Type': 'application/json' }, body: JSON.stringify({ title: 'My Resource', content: 'Example content', metadata: { custom: 'data' } }) });
Get sample data with different parameters