curl --silent --show-error --fail-with-body --request GET \
--url 'https://api.stateset.com/api/v1/inventory' \
--header "Authorization: Bearer $STATESET_API_KEY"
{
"has_more": true,
"items": [
{
"created_at": "2026-08-31T14:22:05Z",
"description": "Two-person tent, green — replacement for damaged pole set.",
"id": 1001,
"is_active": true,
"name": "Two-Person Tent",
"sku": "SKU-TENT-2P-GRN",
"unit_of_measure": "string",
"updated_at": "2026-08-31T14:22:05Z"
}
],
"limit": 20,
"offset": 1,
"total": 102
}
List inventories
List of inventory items
GET
/
api
/
v1
/
inventory
curl --silent --show-error --fail-with-body --request GET \
--url 'https://api.stateset.com/api/v1/inventory' \
--header "Authorization: Bearer $STATESET_API_KEY"
{
"has_more": true,
"items": [
{
"created_at": "2026-08-31T14:22:05Z",
"description": "Two-person tent, green — replacement for damaged pole set.",
"id": 1001,
"is_active": true,
"name": "Two-Person Tent",
"sku": "SKU-TENT-2P-GRN",
"unit_of_measure": "string",
"updated_at": "2026-08-31T14:22:05Z"
}
],
"limit": 20,
"offset": 1,
"total": 102
}
Confirm your deployment before running this request. This page describes an API contract;
a published reference does not establish hosted availability. Check the dated
host report and obtain your deployment URL and credentials.
Replace the example host if your provisioned service uses a different URL.
Query parameters
integer (int32)
Maximum number of results to return (default: 50).
integer (int32)
Number of results to skip (default: 0).
string
Filter by SKU (exact match).
boolean
Filter by items below reorder point.
boolean
Filter by active status.
Response
InventoryListResponse
boolean
required
InventoryItemResponse[]
required
integer (int32)
required
Minimum:
0.integer (int32)
required
Minimum:
0.integer
required
Minimum:
0.Status codes
| Code | Meaning |
|---|---|
200 | List of inventory items |
Using this contract
Read the source OpenAPI document for declared schemas and alternatives. This page also includes documented corrections from the spec overlays. Example IDs and values are illustrative; replace them with records from your workspace.curl --silent --show-error --fail-with-body --request GET \
--url 'https://api.stateset.com/api/v1/inventory' \
--header "Authorization: Bearer $STATESET_API_KEY"
{
"has_more": true,
"items": [
{
"created_at": "2026-08-31T14:22:05Z",
"description": "Two-person tent, green — replacement for damaged pole set.",
"id": 1001,
"is_active": true,
"name": "Two-Person Tent",
"sku": "SKU-TENT-2P-GRN",
"unit_of_measure": "string",
"updated_at": "2026-08-31T14:22:05Z"
}
],
"limit": 20,
"offset": 1,
"total": 102
}
Last modified on September 21, 2026