edu0.ai API
✓ Free Tier AvailableIntegrate edu0.ai's education processing tools into your application. RESTful API with JSON responses, generous rate limits, and no API key required for basic usage.
Quick Start
curl -X POST https://api.edu0.ai/v1/process \
-H "Content-Type: multipart/form-data" \
-F "[email protected]" \
-F "action=summarize"
Base URL
https://api.pdf0.ai/v1
Authentication
No API key required for the free tier (20 requests/minute). For higher limits, include your API key in the header:
Authorization: Bearer YOUR_API_KEY
Endpoints
POST
/v1/process
Process a file with the specified action.
fileFile The file to process (multipart upload)
actionString Processing action (summarize, translate, convert, etc.)
optionsJSON Optional parameters specific to the action
GET
/v1/health
Check API health and available tools.
GET
/v1/tools
List all available processing tools and their parameters.
Rate Limits
| Tier | Rate | File Size | Cost |
|---|---|---|---|
| Free | 20 req/min | 25MB | $0 |
| Pro | 100 req/min | 100MB | $9/mo |
| Enterprise | Unlimited | 500MB | Contact us |
Response Format
{
"status": "success",
"data": {
"result": "...",
"processingTime": 1.23,
"fileSize": 45678
}
}
Error Codes
| Code | Description |
|---|---|
| 400 | Bad Request — Invalid parameters |
| 413 | File Too Large — Exceeds size limit |
| 429 | Too Many Requests — Rate limit exceeded |
| 500 | Server Error — Try again later |