Real-time stock availability for the entire Tangic product catalogue. Built for partner integrations.
Query stock levels by individual SKU, batch of SKUs, or retrieve all active products at once. Responses are JSON with CORS enabled for all origins.
api.tangic.comAll requests require an API key. Each partner receives a unique key that determines which products they can access.
Pass your key via one of these methods:
X-API-Key: your_api_key_here
GET /stock?sku=EXAMPLE&api_key=your_api_key_here
| Response | Meaning |
|---|---|
401 | No API key provided |
403 | Invalid or inactive API key |
To request an API key, contact api@tangic.com
# Single SKU lookup curl -H "X-API-Key: your_api_key_here" https://api.tangic.com/stock?sku=TNG-CONICAL-PINT
{
"partner": "HelloPrint",
"timestamp": "2026-03-29T15:00:00.000Z",
"count": 1,
"items": [
{
"sku": "TNG-CONICAL-PINT",
"name": "Conical Pint Glass",
"quantity": 50,
"status": "low_stock",
"available": true,
"updated_at": "2026-03-28T14:30:00.000Z"
}
]
}
| Field | Type | Description |
|---|---|---|
sku | string | Product SKU identifier |
name | string | Product display name |
quantity | integer | Available stock quantity |
status | string | Stock status (see below) |
available | boolean | true if quantity > 0 |
updated_at | string | ISO 8601 timestamp of last stock update |
| Status | Meaning | Typical Quantity |
|---|---|---|
| in_stock | Product available | 100+ |
| low_stock | Limited availability | < 100 |
| out_of_stock | Not available | 0 |
| unknown | Status not yet determined | — |