List feed subscriptions
const url = 'https://api-v1.tailwind.ai/v1/feeds?limit=50';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-v1.tailwind.ai/v1/feeds?limit=50' \ --header 'Authorization: Bearer <token>'The organization’s connected RSS feeds, newest first. Each one generates a SmartPin draft for every new post the daily watcher finds.
Feeds are org-scoped, not per-account: every feed names the Pinterest account its Pins are assigned to, and accountId filters by it. Results are paginated; pass the returned nextCursor to read further.
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Query Parameters
Section titled “Query Parameters”Only return feeds assigned to this Pinterest account.
Feeds per page, 1-100. Defaults to 50.
NextCursor from a previous call, to read the next page.
Responses
Section titled “Responses”The organization’s feed subscriptions
object
object
A connected RSS feed subscription.
object
Feed ID. Pass to get-feed, update-feed, delete-feed.
Pinterest account the generated Pins are assigned to.
The feed’s own title, when it declares one.
Keywords applied to every Pin this feed generates.
Design treatment for generated Pins. template-match is readable but cannot be set through this API — it is not generally available.
Set only on the premium tier; null otherwise.
How often a generated Pin is redesigned, when autoRegenerate is on. Not how often the feed is checked — that is daily.
Whether generated Pins are periodically redesigned.
A paused feed generates nothing, but is also not polled — so posts published while it is paused are treated as new on resume.
ISO 8601 timestamp of the last watcher run over this feed, or null if it has not run yet.
Why the last poll failed, or null. A feed that keeps failing here is usually unreachable rather than empty.
SmartPins generated from this feed so far.
ISO 8601
ISO 8601
object
Pass as cursor to read the next page. Absent on the last page.
object
Unique request ID for debugging
Example
{ "data": { "feeds": [ { "designTier": "basic", "premiumStyle": "image-highlight", "generationFrequency": "every-3-days", "status": "active" } ] }}Invalid request
object
object
Error code
Error message
Machine-readable denial reason. Present on PAYMENT_REQUIRED errors: insufficient_credits, trial_exhausted, no_access, account_not_connected, legacy_post_limit_exceeded.
Present on PAYMENT_REQUIRED errors: where the denial can be resolved. Reason-specific, because buying credits does not clear a trial, access or connection denial. Requests sent with X-Request-Source: mcp receive an informational plans page instead, so agent surfaces never present a purchase link.
object
Unique request ID for debugging
Example
{ "error": { "code": "BAD_REQUEST", "message": "Invalid request body" }, "meta": { "requestId": "abc123" }}Authentication required or invalid bearer credentials
object
object
Error code
Error message
Machine-readable denial reason. Present on PAYMENT_REQUIRED errors: insufficient_credits, trial_exhausted, no_access, account_not_connected, legacy_post_limit_exceeded.
Present on PAYMENT_REQUIRED errors: where the denial can be resolved. Reason-specific, because buying credits does not clear a trial, access or connection denial. Requests sent with X-Request-Source: mcp receive an informational plans page instead, so agent surfaces never present a purchase link.
object
Unique request ID for debugging
Example
{ "error": { "code": "UNAUTHORIZED", "message": "Invalid API key" }, "meta": { "requestId": "abc123" }}Resource not found
object
object
Error code
Error message
Machine-readable denial reason. Present on PAYMENT_REQUIRED errors: insufficient_credits, trial_exhausted, no_access, account_not_connected, legacy_post_limit_exceeded.
Present on PAYMENT_REQUIRED errors: where the denial can be resolved. Reason-specific, because buying credits does not clear a trial, access or connection denial. Requests sent with X-Request-Source: mcp receive an informational plans page instead, so agent surfaces never present a purchase link.
object
Unique request ID for debugging
Example
{ "error": { "code": "NOT_FOUND", "message": "Account not found" }, "meta": { "requestId": "abc123" }}Rate limit exceeded
object
object
Error code
Error message
Machine-readable denial reason. Present on PAYMENT_REQUIRED errors: insufficient_credits, trial_exhausted, no_access, account_not_connected, legacy_post_limit_exceeded.
Present on PAYMENT_REQUIRED errors: where the denial can be resolved. Reason-specific, because buying credits does not clear a trial, access or connection denial. Requests sent with X-Request-Source: mcp receive an informational plans page instead, so agent surfaces never present a purchase link.
object
Unique request ID for debugging
Example
{ "error": { "code": "RATE_LIMIT_EXCEEDED", "message": "Daily rate limit of 5000 requests exceeded. Resets at midnight UTC." }, "meta": { "requestId": "abc123" }}