Printago API
GET /v1/sku-costs/by-sku/{skuId}

Get all costs for a specific SKU

Requires: sku.view

Path Parameters

skuId required
string
- SKU identifier

Response Schema

Response
value
object[]

Example Response

200 OK — application/json
[
  {
    "component": {
      "id": "string",
      "name": "string",
      "unit": "string",
      "rate": 1,
      "storeId": "string",
      "createdAt": "2026-08-24T03:58:56.177Z",
      "updatedAt": "2026-08-24T03:58:56.177Z"
    },
    "id": "string",
    "skuId": "string",
    "costComponentId": "string",
    "quantity": 1,
    "storeId": "string",
    "createdAt": "2026-08-24T03:58:56.177Z",
    "updatedAt": "2026-08-24T03:58:56.177Z"
  }
]