Curosa
Supplier Portal API Reference New

Core resources

产品

列出产品

请求

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

响应

{
    "data": [
        {
            "sku": "T3272P287613",
            "platform_sku": "367.983.903",
            "name": "供应商产品描述",
            "status": "active",
            "platform_status": "active"
        },
         {
            "sku": "WF314403AAB",
            "platform_sku": "574.478.508",
            "name": "供应商产品描述",
            "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
    }
}

获取单个产品

请求

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

响应