The Zevis API provides programmatic access to all platform features via REST endpoints. Base URL: https://zevis.cloud/v1
Authorization header as Bearer <your-api-key>| Method | Path | Description |
|---|---|---|
| POST | /extraction | Create a new web extraction job |
| GET | /extraction | List all extraction jobs |
| GET | /extraction/:id | Get job status and details |
| GET | /extraction/:id/stream | SSE stream for real-time job progress |
| GET | /extraction/:id/artifact | Download the extraction result |
| DELETE | /extraction/:id | Cancel a running job |
| Method | Path | Description |
|---|---|---|
| GET | /credits/balance | Check current credit balance |
| GET | /credits/history | View transaction history |
| POST | /billing/checkout | Create a LemonSqueezy checkout session |
| GET | /billing/packages | List available credit packages |
curl -X POST https://zevis.cloud/v1/extraction \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"url": "https://example.com/products", "output": "json", "maxPages": 5}'All responses follow this structure:
{
"success": true,
"data": { ... },
"meta": {
"creditsUsed": 15,
"processingTimeMs": 2340
}
}