GST rate — jewellery
tip
Status: LIVE — Real-time data from the upstream regulator. Updated on the regulator's publication cadence.
What it does
Jewellery GST has nuanced making-charge interaction (3% on the gold + 5% on labour, or composite 3% under the alternate scheme). Our API exposes HSN-by-HSN rates with the GST council's clarification notes embedded — useful for jewellery retailers, e-commerce platforms, and accounting tools.
Base URL
https://gstjewel.sahayakonline.co.in/v1/
Endpoints
| Method | Path | Description |
|---|---|---|
GET | /health | Liveness probe |
GET | /v1/gst/jewel/rate | All jewellery HSNs with current rate |
GET | /v1/gst/jewel/rate/{hsn} | Single HSN with making-charge rules |
GET | /v1/gst/jewel/composite-scheme | Composite scheme eligibility + rate |
Sample request
- cURL
- Python
- Node.js
curl -sS https://gstjewel.sahayakonline.co.in/v1/gst/jewel/rate \
-H "Authorization: Bearer $SAHAYAK_KEY" \
-H "Accept: application/json"
import os, requests
resp = requests.get(
"https://gstjewel.sahayakonline.co.in/v1/gst/jewel/rate",
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://gstjewel.sahayakonline.co.in/v1/gst/jewel/rate', {
headers: {
'Authorization': `Bearer ${process.env.SAHAYAK_KEY}`,
'Accept': 'application/json',
},
});
console.log(await resp.json());
Sample response
{
"spec_ref": "spec_12_GST_Rate_Jewellery_API",
"endpoint": "/v1/gst/jewel/rate",
"method": "GET",
"results": [
{ "hsn": "7113", "description": "Gold (22-carat) jewellery", "rate_pct": 3, "making_charge_rate_pct": 5, "effective_from": "2025-04-01" },
{ "hsn": "7114", "description": "Silver jewellery", "rate_pct": 3, "making_charge_rate_pct": 5, "effective_from": "2025-04-01" }
],
"meta": { "fixture_mode": false, "url": "https://gstjewel.sahayakonline.co.in/v1/" }
}
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. Rate changes land within 24 hours of CBIC notification; composite-scheme reform tracked separately.