DPIIT — Startup India recognition
note
Status: Fixture Mode — Endpoint, schema, auth, and SDKs are production-grade. Responses are deterministic samples drawn from real regulator publications. Activates to live within 5–15 business days of order — no integration changes required.
What it does
DPIIT-recognised startups are eligible for tax exemptions and government tender preference. Our API verifies recognition status, incorporation date, sector tag, and tax-exemption (Section 80-IAC) status — useful for VC due-diligence, government-tender screening, and startup-credit underwriting.
Base URL
https://dpiit-startup.sahayakonline.co.in/v1/
Endpoints
| Method | Path | Description |
|---|---|---|
GET | /health | Liveness probe |
GET | /v1/dpiit/recognition/{cin} | Recognition status by CIN |
GET | /v1/dpiit/recognition/lookup?name=<query> | Free-text lookup by company name |
Sample request
- cURL
- Python
- Node.js
curl -sS https://dpiit-startup.sahayakonline.co.in/v1/dpiit/recognition/U72900DL2018PTC123456 \
-H "Authorization: Bearer $SAHAYAK_KEY" \
-H "Accept: application/json"
import os, requests
resp = requests.get(
"https://dpiit-startup.sahayakonline.co.in/v1/dpiit/recognition/U72900DL2018PTC123456",
headers={"Authorization": f"Bearer {os.environ['SAHAYAK_KEY']}", "Accept": "application/json"},
timeout=10,
)
resp.raise_for_status()
print(resp.json())
const fetch = (await import('node-fetch')).default;
const resp = await fetch('https://dpiit-startup.sahayakonline.co.in/v1/dpiit/recognition/U72900DL2018PTC123456', {
headers: {
'Authorization': `Bearer ${process.env.SAHAYAK_KEY}`,
'Accept': 'application/json',
},
});
console.log(await resp.json());
Sample response
{
"spec_ref": "spec_dpiit_startup_v1",
"endpoint": "/v1/dpiit/recognition/U72900DL2018PTC123456",
"method": "GET",
"results": [
{
"cin": "U72900DL2018PTC123456",
"company": "Sample Startup Pvt Ltd",
"dpiit_recognised": true,
"recognition_date": "2019-08-21",
"sector": "EnterpriseTech / SaaS",
"tax_exemption_80iac_granted": true
}
],
"meta": { "fixture_mode": true, "note": "Activates to live data within 5–15 business days of order." }
}
Error codes
| Code | Meaning | Recommended action |
|---|---|---|
400 | Malformed request (missing required param, invalid format) | Fix request shape. Response body includes error.field pinpointing the issue. |
401 | Missing or invalid Authorization header | Verify key prefix matches your tier and that the header is Authorization: Bearer …. |
403 | Key valid but not entitled to this endpoint | Sandbox keys cannot call live-tier endpoints. Upgrade or request entitlement. |
404 | Resource not found | Check identifier format. Some endpoints return 200 with empty results[] instead of 404 — verify the endpoint convention. |
429 | Rate limit exceeded | Honor Retry-After header. Sandbox 30 r/m, Starter 300 r/m, Growth 1500 r/m. |
503 | Upstream regulator unreachable after retries | Live-tier only. Sahayak retries 3× with backoff before surfacing. Implement circuit-breaker on caller side. |
Rate limits
| Tier | Rate limit | Monthly cap |
|---|---|---|
| Sandbox | 30 r/min | 1,000 live calls (shared across 3 LIVE endpoints) |
| Starter | 300 r/min | 10,000 live calls |
| Growth | 1,500 r/min | 100,000 live calls |
| Scale | custom | 500,000+ |
SLA reference
See Status & SLA for uptime targets, latency targets, and incident communication. Live activation pulls from startupindia.gov.in with daily-cached refresh.