DevriQ Tools API
Integrate 150+ developer and creator utilities directly into your applications. Our REST API is currently in active development — internal endpoints are live, and the full public API is coming in Q3 2026.
Base URL
https://tools.devriq.inEndpoints
All requests use JSON. Authentication is not required for public tracking/stats endpoints. The full API (image/PDF/AI processing) will require an API key.
/api/track-usage● LiveRecord a tool session for analytics. Call once per tool use.
Request Body
{ "tool_id": "json-formatter", "file_processed": true }Response
{ "ok": true }/api/platform-stats● LiveRetrieve aggregate platform statistics (tool count, files processed). Cached weekly.
Response
{ "files_processed": 52840 }/api/rate-tool● LiveSubmit a star rating for a specific tool.
Request Body
{ "tool_id": "json-formatter", "stars": 5, "fingerprint": "optional-anon-id" }Response
{ "ok": true, "stats": { "avg_stars": 4.8, "rating_count": 124 } }/api/tool-stats● LiveGet aggregated ratings and usage stats for all tools. Cached weekly.
Response
{ "overall_avg": 4.8, "total_ratings": 3210, "per_tool": [...] }/api/v1/process/image⏳ Coming Q3 2026Programmatically compress, resize, and convert images via REST API.
Request Body
{ "url": "https://...", "format": "webp", "quality": 80 }Response
{ "output_url": "https://...", "original_size": 2048000, "compressed_size": 120000 }/api/v1/process/pdf⏳ Coming Q3 2026Merge, compress, split, or protect PDF files programmatically.
Request Body
{ "operation": "compress", "files": ["base64..."], "target_size_kb": 500 }Response
{ "output": "base64...", "pages": 12, "size_kb": 487 }/api/v1/ai/generate⏳ Coming Q3 2026Access our AI tools (grammar, summarization, paraphrasing) via API.
Request Body
{ "tool": "grammar-checker", "input": "Your text here.", "options": {} }Response
{ "output": "Your corrected text.", "corrections": 3 }Rate Limits
| Tier | Requests/min | Requests/day | Auth |
|---|---|---|---|
| Anonymous | 30 | 500 | None |
| Registered (Beta) | 100 | 5,000 | |
| Pro (Q3 2026) | 500 | 50,000 | API Key |
Want Early API Access?
We're onboarding select developers and agencies in our private beta. Email us with your use case and we'll get you set up.
Email api@devriq.in© 2026 DevriQ. All rights reserved.