Skip to main content

RegTrack — regulatory filing tracker

tip

Status: LIVE — Real-time data from the upstream regulator. Updated on the regulator's publication cadence.

What it does

RegTrack consolidates filing-status checks across GST, MCA, RERA, and FSSAI. Pass any single identifier (GSTIN, CIN, RERA ID, or FSSAI licence) and get the full multi-regulator filing history. Useful for compliance teams who today log into 4 different regulator portals to assemble a single auditable view.

Base URL

https://regtrack.sahayakonline.co.in/v1/

Endpoints

MethodPathDescription
GET/healthLiveness probe
GET/v1/regtrack/{identifier}Multi-regulator filing trail for a single entity
GET/v1/regtrack/{identifier}/recentLast 90 days of filing events only

Sample request

curl -sS https://regtrack.sahayakonline.co.in/v1/regtrack/27AAAPL1234C1Z5 \
-H "Authorization: Bearer $SAHAYAK_KEY" \
-H "Accept: application/json"

Sample response

{
"spec_ref": "spec_regtrack_v1",
"endpoint": "/v1/regtrack/27AAAPL1234C1Z5",
"method": "GET",
"results": [
{
"regulator": "gst",
"identifier_type": "gstin",
"last_filing": "2026-04-20",
"filing_kind": "GSTR-3B",
"status": "filed_on_time"
},
{
"regulator": "mca",
"identifier_type": "cin_resolved_from_gstin",
"last_filing": "2026-03-15",
"filing_kind": "AOC-4",
"status": "filed_on_time"
}
],
"meta": { "fixture_mode": false, "url": "https://regtrack.sahayakonline.co.in/v1/" }
}

Error codes

CodeMeaningRecommended action
400Malformed request (missing required param, invalid format)Fix request shape. Response body includes error.field pinpointing the issue.
401Missing or invalid Authorization headerVerify key prefix matches your tier and that the header is Authorization: Bearer ….
403Key valid but not entitled to this endpointSandbox keys cannot call live-tier endpoints. Upgrade or request entitlement.
404Resource not foundCheck identifier format. Some endpoints return 200 with empty results[] instead of 404 — verify the endpoint convention.
429Rate limit exceededHonor Retry-After header. Sandbox 30 r/m, Starter 300 r/m, Growth 1500 r/m.
503Upstream regulator unreachable after retriesLive-tier only. Sahayak retries 3× with backoff before surfacing. Implement circuit-breaker on caller side.

Rate limits

TierRate limitMonthly cap
Sandbox30 r/min1,000 live calls (shared across 3 LIVE endpoints)
Starter300 r/min10,000 live calls
Growth1,500 r/min100,000 live calls
Scalecustom500,000+

SLA reference

See Status & SLA for uptime targets, latency targets, and incident communication. RegTrack is part of the prod-12 customer-money tier — Form C invariant — and runs on dedicated infrastructure separate from the wrapped-API fleet.