List feeds
List the product feeds for one project. Requires authentication (API key via Bearer or X-API-Key, or a signed-in session).
projectId is required unless your key is pinned to a project. A key pinned to a project defaults to it, and naming a different one is rejected with 403. An account-wide key must name a project; omitting it returns 400. This previously merged rows from every project on the account with nothing in the response to say which came from where.
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
The project to list. Required for an account-wide key; optional for a key pinned to a project.
Response Body
application/json
application/json
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": "PROJECT_ID_REQUIRED", "message": "This endpoint returns project-scoped data. Pass ?projectId=<id>, or use a key pinned to a project." }}{ "error": { "code": "INSUFFICIENT_CREDITS", "message": "Not enough credits for this request.", "details": null }}{ "error": { "code": "PROJECT_SCOPE_MISMATCH", "message": "This API key is scoped to a different project." }}