For the complete documentation index, see llms.txt. Markdown versions of documentation pages are available by appending .md to the page URL.
Primary navigation

Feeds

Create product feeds and retrieve feed metadata.

Overview

Use these endpoints to create a product feed and retrieve feed metadata.

REST endpoints

  • GET /product_feeds/{id} returns metadata for a feed.
  • POST /product_feeds creates a new product feed and returns its metadata.

GET /product_feeds/{id}

Returns metadata for the specified product feed.

Path parameters

FieldTypeRequiredDescription
idstringYesIdentifier for the product feed.

Request

This endpoint does not define a request body.

Response

200 OK

FieldTypeRequiredDescription
idstringYesIdentifier for the product feed.
target_countrystringNoTwo letter country code per ISO 3166.
updated_atstringNoTimestamp of the most recent update to the feed.

404 Not Found

Returned when the product feed is not found.

POST /product_feeds

Creates a new product feed and returns its metadata.

Request

FieldTypeRequiredDescription
target_countrystringNoTwo letter country code per ISO 3166.

Response

200 OK

FieldTypeRequiredDescription
idstringYesIdentifier for the product feed.
target_countrystringNoTwo letter country code per ISO 3166.
updated_atstringNoTimestamp of the most recent update to the feed.

400 Bad Request

Returned when the product feed payload is invalid.