Loading…
Loading…
Base URL: https://mantechstudio.in/api/v1
All API requests must include your ManTech API Key in the HTTP Authorization header as a Bearer token:
Authorization: Bearer mantech_live_YOUR_SECRET_KEY
Need a key? Generate one instantly in the API Key Console.
Search 18,000+ tariff codes by product keyword (e.g. "cement", "laptops") or code prefix.
q (string, required): Search keyword or fragmentlimit (integer, optional): Results limit (default: 20)curl "https://mantechstudio.in/api/v1/hsn/search?q=cement&limit=5" \ -H "Authorization: Bearer mantech_live_YOUR_KEY"
Retrieve tariff description, chapter breakdown, and verified GST rate for a specific HSN or SAC code.
const res = await fetch("https://mantechstudio.in/api/v1/hsn/8471", {
headers: { "Authorization": "Bearer mantech_live_YOUR_KEY" }
});
const data = await res.json();
console.log(data.data.description, data.data.gst_rate);import requests
url = "https://mantechstudio.in/api/v1/hsn/search"
headers = {"Authorization": "Bearer mantech_live_YOUR_KEY"}
params = {"q": "steel"}
response = requests.get(url, headers=headers, params=params)
print(response.json())