Feed Posts API
Feed posts are the individual articles, videos, and posts inside your subscribed feeds. Use these endpoints to browse your content, filter to what's new today, manage your saved list, and search across posts.
The post model
- Name
id- Type
- string
- Description
Unique identifier for the post.
- Name
title- Type
- string
- Description
Title of the article or video.
- Name
link- Type
- string
- Description
Link to the original content.
- Name
smallDescription- Type
- string | null
- Description
A short preview or excerpt.
- Name
largeDescription- Type
- string | null
- Description
The full content of the post, if available.
- Name
publishedDate- Type
- timestamp | null
- Description
When the post was originally published.
- Name
thumbnailUrl- Type
- string | null
- Description
URL of the post's main image.
- Name
authoruri- Type
- string | null
- Description
URI of the author (usually for podcast or atom feeds).
- Name
authorname- Type
- string | null
- Description
Name of the author or creator.
- Name
enclouserurl- Type
- string | null
- Description
URL of the media enclosure (e.g. audio file for podcasts).
- Name
enclousertype- Type
- string | null
- Description
MIME type of the media enclosure.
- Name
views- Type
- integer
- Description
Number of times this post has been viewed.
- Name
isReadLater- Type
- boolean
- Description
Whether you've saved this post to read later.
- Name
transcript- Type
- string | null
- Description
YouTube video transcript if available.
- Name
summary- Type
- string | null
- Description
A short AI summary, if one has been generated for this post.
- Name
createdAt- Type
- timestamp
- Description
When this post was stored in the workspace database.
- Name
updatedAt- Type
- timestamp
- Description
When this post was last updated in the database.
List all posts
Returns all posts across every feed in your workspace, newest first.
Query parameters
- Name
page- Type
- integer
- Description
Page number (default
1).
- Name
pageSize- Type
- integer
- Description
Posts per page (default
20, max100).
Request
curl "https://repurai.com/api/v1/posts?page=1&pageSize=20" \
-H "Authorization: Bearer [API_Key]"
Response
success
{
"data": [
{
"id": "a21cb00b-cdea...",
"title": "Anthropic enhances Claude Managed Agents with two new privacy and security features",
"link": "https://9to5mac.com/2026/05/19/anthropic-enhances-claude-managed-agents-with-two-new-privacy-and-security-features/",
"smallDescription": "Anthropic is introducing two new features for Claude Managed Agents that give users more control over the security and privacy. more…",
"largeDescription": "<div class=\"feat-image\"></div><p>Anthropic is introducing two new features for Claude Managed Agents that give users more control over the security and privacy.</p>",
"publishedDate": "2026-05-19T15:26:13.000Z",
"thumbnailUrl": "https://9to5mac.com/wp-content/uploads/sites/6/2026/04/claude-creative.webp?w=1600",
"authoruri": null,
"authorname": "Zac Hall",
"enclouserurl": null,
"enclousertype": null,
"views": null,
"isReadLater": false,
"transcript": null,
"summary": "Anthropic has introduced two new features for Claude Managed Agents to provide users with greater control over their security and privacy. These enhancements aim to ensure that businesses can manage their AI agents more safely and securely.",
"createdAt": "2026-05-19T15:30:48.547Z",
"updatedAt": "2026-05-19T18:35:02.566Z"
}
],
"page": 1,
"pageSize": 20,
"hasMore": true
}
Get Today's posts
Returns only posts published today. Supports the same page / pageSize parameters.
Request
curl https://repurai.com/api/v1/posts/today \
-H "Authorization: Bearer [API_Key]"
Response
success
{
"data": [
{
"id": "a21cb00b-cdea...",
"title": "Anthropic enhances Claude Managed Agents with two new privacy and security features",
"link": "https://9to5mac.com/2026/05/19/anthropic-enhances-claude-managed-agents-with-two-new-privacy-and-security-features/",
"smallDescription": "Anthropic is introducing two new features for Claude Managed Agents that give users more control over the security and privacy. more…",
"largeDescription": "<div class=\"feat-image\"></div><p>Anthropic is introducing two new features for Claude Managed Agents that give users more control over the security and privacy.</p>",
"publishedDate": "2026-05-19T15:26:13.000Z",
"thumbnailUrl": "https://9to5mac.com/wp-content/uploads/sites/6/2026/04/claude-creative.webp?w=1600",
"authoruri": null,
"authorname": "Zac Hall",
"enclouserurl": null,
"enclousertype": null,
"views": null,
"isReadLater": false,
"transcript": null,
"summary": "Anthropic has introduced two new features for Claude Managed Agents to provide users with greater control over their security and privacy. These enhancements aim to ensure that businesses can manage their AI agents more safely and securely.",
"createdAt": "2026-05-19T15:30:48.547Z",
"updatedAt": "2026-05-19T18:35:02.566Z"
}
],
"page": 1,
"pageSize": 20,
"hasMore": false
}
Get post details
Returns the full details for a single post.
Request
curl https://repurai.com/api/v1/posts/[postId] \
-H "Authorization: Bearer [API_Key]"
Response
success
{
"id": "a21cb00b-cdea...",
"title": "Anthropic enhances Claude Managed Agents with two new privacy and security features",
"link": "https://9to5mac.com/2026/05/19/anthropic-enhances-claude-managed-agents-with-two-new-privacy-and-security-features/",
"smallDescription": "Anthropic is introducing two new features for Claude Managed Agents that give users more control over the security and privacy. more…",
"largeDescription": "<div class=\"feat-image\"></div><p>Anthropic is introducing two new features for Claude Managed Agents that give users more control over the security and privacy.</p>",
"publishedDate": "2026-05-19T15:26:13.000Z",
"thumbnailUrl": "https://9to5mac.com/wp-content/uploads/sites/6/2026/04/claude-creative.webp?w=1600",
"authoruri": null,
"authorname": "Zac Hall",
"enclouserurl": null,
"enclousertype": null,
"views": null,
"isReadLater": false,
"summary": "Anthropic has introduced two new features for Claude Managed Agents to provide users with greater control over their security and privacy. These enhancements aim to ensure that businesses can manage their AI agents more safely and securely.",
"transcript": null,
"createdAt": "2026-05-19T15:30:48.547Z",
"updatedAt": "2026-05-19T18:35:02.566Z"
}
Search posts
Searches across all posts in your workspace — title, description, and full content.
Query parameters
- Name
q- Type
- string
- Description
The search term.
- Name
page- Type
- integer
- Description
Page number (default
1).
- Name
pageSize- Type
- integer
- Description
Posts per page (default
20, max100).
Request
curl "https://repurai.com/api/v1/posts/search?q=anthropic" \
-H "Authorization: Bearer [API_Key]"
Response
success
{
"data": [
{
"id": "a21cb00b-cdea...",
"title": "Anthropic enhances Claude Managed Agents with two new privacy and security features",
"link": "https://9to5mac.com/2026/05/19/anthropic-enhances-claude-managed-agents-with-two-new-privacy-and-security-features/",
"smallDescription": "Anthropic is introducing two new features for Claude Managed Agents that give users more control over the security and privacy. more…",
"largeDescription": "<div class=\"feat-image\"></div><p>Anthropic is introducing two new features for Claude Managed Agents that give users more control over the security and privacy.</p>",
"publishedDate": "2026-05-19T15:26:13.000Z",
"thumbnailUrl": "https://9to5mac.com/wp-content/uploads/sites/6/2026/04/claude-creative.webp?w=1600",
"authoruri": null,
"authorname": "Zac Hall",
"enclouserurl": null,
"enclousertype": null,
"views": null,
"isReadLater": false,
"transcript": null,
"summary": "Anthropic has introduced two new features for Claude Managed Agents to provide users with greater control over their security and privacy. These enhancements aim to ensure that businesses can manage their AI agents more safely and securely.",
"createdAt": "2026-05-19T15:30:48.547Z",
"updatedAt": "2026-05-19T18:35:02.566Z"
}
],
"page": 1,
"pageSize": 10,
"hasMore": false,
"query": "anthropic"
}
Get Saved posts
Returns all posts you've saved to read later, newest first.
Request
curl https://repurai.com/api/v1/posts/read-later \
-H "Authorization: Bearer [API_Key]"
Response
success
{
"data": [
{
"id": "a21cb00b-cdea...",
"title": "Anthropic enhances Claude Managed Agents with two new privacy and security features",
"link": "https://9to5mac.com/2026/05/19/anthropic-enhances-claude-managed-agents-with-two-new-privacy-and-security-features/",
"smallDescription": "Anthropic is introducing two new features for Claude Managed Agents that give users more control over the security and privacy. more…",
"largeDescription": "<div class=\"feat-image\"></div><p>Anthropic is introducing two new features for Claude Managed Agents that give users more control over the security and privacy.</p>",
"publishedDate": "2026-05-19T15:26:13.000Z",
"thumbnailUrl": "https://9to5mac.com/wp-content/uploads/sites/6/2026/04/claude-creative.webp?w=1600",
"authoruri": null,
"authorname": "Zac Hall",
"enclouserurl": null,
"enclousertype": null,
"views": null,
"isReadLater": true,
"transcript": null,
"summary": "Anthropic has introduced two new features for Claude Managed Agents to provide users with greater control over their security and privacy. These enhancements aim to ensure that businesses can manage their AI agents more safely and securely.",
"createdAt": "2026-05-19T15:30:48.547Z",
"updatedAt": "2026-05-19T18:35:02.566Z"
}
],
"page": 1,
"pageSize": 20,
"hasMore": false
}