List data feeds
const url = 'https://api.tryletterhead.com/api/v3/curations/data-feeds?api=true&direction=asc';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url 'https://api.tryletterhead.com/api/v3/curations/data-feeds?api=true&direction=asc' \ --header 'Authorization: Bearer <token>'Returns a paginated list of the companyβs JSON data feeds β feeds that map fields from a JSON endpoint onto curations, as an alternative to RSS. For RSS feeds, see List curation feeds.
Authorizations
Section titled βAuthorizations βParameters
Section titled β Parameters βQuery Parameters
Section titled βQuery Parameters βRequired. Set to true to authenticate with your company API key rather than a signed-in session.
Responses
Section titled β Responses β200 OK
object
The shape returned for both RSS feeds (List curation feeds) and JSON data feeds (List data
feeds) β type (0 RSS, 1 JSON data feed) tells the two apart. fieldMappings, authType,
and hasAuthSecret are only meaningful on a JSON data feed.
object
0 RSS feed, 1 JSON data feed.
The channel this feed was originally created against, or blank for a feed shared to multiple channels with no single owner.
Internal numeric identifiers of every channel this feed is shared with.
0 β no authentication. 1 β bearer token.
Whether a credential is stored β the credential itself is never returned.
object
Example
{ "items": [ { "uniqueId": "feed_data_2k9x", "title": "Vendor product catalog", "description": "Nightly product export from our commerce platform.", "feedUrl": "https://example.com/api/products.json", "type": 1, "isValid": true, "validationCode": 200, "crawl": false, "archiveIntervalDays": 1, "channelName": "The Weekly Brew", "channelSlug": "the-weekly-brew", "sharedChannelIds": [ 54212 ], "authType": 1, "hasAuthSecret": true, "fieldMappings": [ { "source": "object.name", "target": "title" }, { "source": "object.sku", "target": "customField:vendor-sku" } ], "createdAt": "2026-05-01T09:00:00+00:00", "updatedAt": "2026-08-30T09:05:00+00:00" } ], "message": "Data feeds fetched successfully.", "total": 1}Still can’t find what you need? Contact support.