Developer API
Access 34 tools via REST API or MCP server. Compress images, generate QR codes, process PDFs, and more — all programmatically.
Free access • Sign in to create persistent API keys
API Reference
Base URL: https://razi.pro
Authentication
Optional. Every endpoint works without a key. Supplying one raises your rate limit and attributes usage to your account, via the Authorization header:
Authorization: Bearer rz_your_api_key_here
List all available tools with their parameter schemas.
Response
{
"tools": [
{
"name": "compress_image",
"description": "Compress and convert images...",
"parameters": { "type": "object", "properties": {...} }
}
],
"count": 28
}cURL Example
curl -H "Authorization: Bearer YOUR_API_KEY" \ https://razi.pro/api/v1/tools
Rate Limits
| Surface | Anonymous | With an API key |
|---|---|---|
| Tool catalogue | 140 / hour | 60 / minute |
| Tool execution | 35 / hour | 60 / minute |
| MCP (all endpoints combined) | 30 / minute | 120 / minute |
| Search | 25 / hour | 300 / hour |
| Content | 120 / minute | 120 / minute |
When rate limited, the API returns 429 Too Many Requests with code: "rate_limited". A key with a daily request or monthly AI token quota gets code: "quota_exceeded" once it is spent, until it resets (00:00 UTC daily, the 1st of the month for tokens).
Machine-readable spec: /api/v1/openapi.json · /.well-known/mcp.json