Curosa
Supplier Portal API Reference New

Core resources

Products

List Products

Request

curl -X GET "https://api.curosa.com/v1/products" \
  -H "Authorization: Bearer YOUR_API_KEY"

Response

{
    "data": [
        {
            "sku": "T3272P287613",
            "platform_sku": "367.983.903",
            "name": "Supplier Product Description",
            "status": "active",
            "platform_status": "active"
        },
         {
            "sku": "WF314403AAB",
            "platform_sku": "574.478.508",
            "name": "Supplier Product Description",
            "status": "active",
            "platform_status": "active"
        },
    ],
    "links": {
        "first": null,
        "last": null,
        "prev": null,
        "next": "https://curosa.com/api/v1/products?cursor=eyJwcm9kdWN0cy5pZCI6MTAwLCJfscG9pbnRzVG9OZXh0SXRlbXMiOnRydWV9"
    },
    "meta": {
        "path": "https://curosa.com/api/v1/products",
        "per_page": 100,
        "next_cursor": "eyJwcm9kdWN0cy5pZCI6MTAwLCJfcG9pbnRzVG9OZXh0sSXRlbXMiOnRydWV9",
        "prev_cursor": null
    }
}

Get a product

Request

curl -X GET "https://api.curosa.com/v1/products/{platform_sku}" \
  -H "Authorization: Bearer YOUR_API_KEY"

Response