ACE (Agentic Commerce Engine)
API ReferenceFeeds

List feeds

GET
/feeds

List the product feeds for the account. Requires authentication (API key via Bearer or X-API-Key, or a signed-in session).

Authorization

AuthorizationBearer <token>

API key in the Authorization header: Authorization: Bearer ace_live_.... Use an ace_test_... key for the free, rate-capped sandbox.

In: header

Query Parameters

projectId?string

Limit to one project.

Response Body

application/json

application/json

curl -X GET "https://example.com/feeds"
{  "data": [    {      "id": "string",      "filename": "string",      "file_type": "string",      "product_count": 0,      "warning_count": 0,      "file_size": 0,      "uploaded_at": "2019-08-24T14:15:22Z",      "created_at": "2019-08-24T14:15:22Z",      "updated_at": "2019-08-24T14:15:22Z"    }  ]}
{  "error": {    "code": "INSUFFICIENT_CREDITS",    "message": "Not enough credits for this request.",    "details": null  }}