Products
List products
GET/v1/products
Return a paginated list of catalogue products with current stock.
Parameters
| Name | In | Type | Description |
|---|---|---|---|
limit |
query | integer | Page size, 1–100. Default 25. |
in_stock |
query | boolean | Only products with stock > 0. |
Request
curl --request GET \
--url https://api.sysos.app/v1/products \
--header "Authorization: Bearer ACCESS_TOKEN" \
--header "Content-Type: application/json"
Response 200 OK
{
"data": [
{
"id": "prd_5e2a1b",
"sku": "SOLAR-200W",
"name": "200W Solar Panel",
"price": 189,
"currency": "EUR",
"stock": 142
}
],
"has_more": false,
"next_cursor": null
}