Skip to content

Orders API

The Orders API lets you create and manage orders on the GoTab platform.

GET /v1/orders
ParameterTypeDescription
statusstringFilter by order status
limitnumberNumber of results (default: 20)
offsetnumberPagination offset
sincestringISO 8601 date for filtering
{
"data": [
{
"id": "ord_abc123",
"status": "open",
"total": 4250,
"currency": "USD",
"created_at": "2026-01-15T10:30:00Z"
}
],
"pagination": {
"total": 150,
"limit": 20,
"offset": 0
}
}
POST /v1/orders
{
"location_id": "loc_xyz789",
"items": [
{
"product_id": "prod_001",
"quantity": 2,
"modifiers": []
}
]
}