API Reference

Beta

REST API for select DevriQ AI tools. Currently in beta — endpoints may change.

âš ī¸Warning
The DevriQ API is in beta. Endpoints, request formats, and rate limits are subject to change. Do not use in production without testing. Contact us for a stable API access plan.

Authentication

The API currently does not require authentication. Rate limiting is applied per IP: 30 requests/minute.

Base URL: https://tools.devriq.in/api

Endpoints

POST/api/ai/grammar-check

Check and fix grammar errors in a given text.

Request Body
{
  "text": "Your text to check...",
  "language": "en"
}
Response
{
  "corrected": "...",
  "errors": [...]
}
POST/api/ai/summarize

Summarize an article or long text to key points.

Request Body
{
  "text": "Long article content...",
  "length": "short" | "medium" | "detailed"
}
Response
{
  "summary": "...",
  "key_points": [...]
}
POST/api/ai/paraphrase

Rewrite text in a specified tone.

Request Body
{
  "text": "Original text...",
  "tone": "formal" | "casual" | "academic" | "creative"
}
Response
{
  "paraphrased": "..."
}
â„šī¸Note
PDF and image operations are not available via API — they run client-side using browser APIs. See the Embedding Guide if you need to integrate these tools into your app.