SysOS Help Center
Products

Retrieve a product

GET/v1/products/{id}

Fetch a single product by id.

Parameters

Name In Type Description
id path string The product id.

Request

curl --request GET \
  --url https://api.sysos.app/v1/products/{id} \
  --header "Authorization: Bearer ACCESS_TOKEN" \
  --header "Content-Type: application/json"

Response 200 OK

{
  "id": "prd_5e2a1b",
  "sku": "SOLAR-200W",
  "name": "200W Solar Panel",
  "price": 189,
  "currency": "EUR",
  "stock": 142,
  "updated_at": "2026-02-28T16:00:00Z"
}