API Reference
BetaREST 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-checkCheck and fix grammar errors in a given text.
Request Body
{
"text": "Your text to check...",
"language": "en"
}Response
{
"corrected": "...",
"errors": [...]
}POST
/api/ai/summarizeSummarize 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/paraphraseRewrite 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.