Skip to main content

NPPA — drug price control

tip

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

What it does

National Pharmaceutical Pricing Authority publishes ceiling prices for scheduled drugs (DPCO 2013). Our API exposes the ceiling-price dataset with consistent NPPA IDs, generic name + strength + form, ceiling price, and revision history — the canonical surface for pharma e-commerce, hospital procurement, and pharma-billing software.

Base URL

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

Endpoints

MethodPathDescription
GET/healthLiveness probe
GET/v1/nppa/ceilingAll scheduled drugs with current ceiling price
GET/v1/nppa/ceiling/{nppa_id}Single drug with revision history
GET/v1/nppa/lookup?q=<generic>Free-text generic + strength → NPPA ceiling
GET/v1/nppa/non-scheduled-cap10%-annual-increase cap for non-scheduled formulations

Sample request

curl -sS https://nppa.sahayakonline.co.in/v1/nppa/lookup?q=metformin+500mg \
-H "Authorization: Bearer $SAHAYAK_KEY" \
-H "Accept: application/json"

Sample response

{
"spec_ref": "spec_21_Drug_Price_Control_API",
"endpoint": "/v1/nppa/lookup",
"method": "GET",
"results": [
{
"nppa_id": "NPPA-1234",
"generic": "Metformin Hydrochloride",
"strength": "500 mg",
"form": "Tablet",
"ceiling_price_inr_per_unit": 1.42,
"effective_from": "2025-12-01",
"supersedes": ["NPPA-0987"]
}
],
"meta": { "fixture_mode": false, "url": "https://nppa.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. Ceiling-price revisions land within 12 hours of NPPA's official notification.