/feedList feed posts
Returns a paginated slice of the public Vibe Feed. Supports filtering by tag, author, and time window. Newest posts first.
cursorquery · string | Opaque cursor returned by a previous call. Omit for the first page. |
limitquery · integer | Page size, 1–100. Defaults to 20. |
tagquery · string | Filter by tag slug, e.g. `launch`, `hiring`. |
authorquery · string | Filter by builder username. |
sincequery · string | ISO-8601 timestamp; only posts created after this time. |
- 200OK— A page of feed posts.
- 401Unauthorized— Missing or invalid token.
- 429Too Many Requests— Rate limit exceeded.
curl "https://api.vibecode.xyz/v1/feed?tag=launch&limit=20" \
-H "Authorization: Bearer $VIBECODE_TOKEN"{
"data": [
{
"id": "post_2ZkQx1",
"author": { "username": "ananya", "name": "Ananya Rao" },
"text": "Shipped v0.4 of my prompt playground ✨",
"tags": ["launch", "ai"],
"created_at": "2026-07-13T04:12:00Z",
"metrics": { "likes": 128, "replies": 14 }
}
],
"next": "cursor_abc123"
}