API in Active Development — Early Access Available

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.

< 200msAvg Response Time
API Key (soon)Auth Required
Internal BetaCurrent Status

Base URL

https://tools.devriq.in

Endpoints

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.

POST/api/track-usage● Live

Record a tool session for analytics. Call once per tool use.

Request Body

{ "tool_id": "json-formatter", "file_processed": true }

Response

{ "ok": true }
GET/api/platform-stats● Live

Retrieve aggregate platform statistics (tool count, files processed). Cached weekly.

Response

{ "files_processed": 52840 }
POST/api/rate-tool● Live

Submit 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 } }
GET/api/tool-stats● Live

Get aggregated ratings and usage stats for all tools. Cached weekly.

Response

{ "overall_avg": 4.8, "total_ratings": 3210, "per_tool": [...] }
POST/api/v1/process/image⏳ Coming Q3 2026

Programmatically 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 }
POST/api/v1/process/pdf⏳ Coming Q3 2026

Merge, 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 }
POST/api/v1/ai/generate⏳ Coming Q3 2026

Access 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

TierRequests/minRequests/dayAuth
Anonymous30500None
Registered (Beta)1005,000Email
Pro (Q3 2026)50050,000API 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.