Add Social Feeds to Hono

Activity feeds with posts, reactions, threaded replies, tags, markdown, and media

What You’ll Get

  • Activity feeds with posts, reactions, threaded replies, tags, markdown, and media
  • Full TypeScript types and IntelliSense
  • Zero dependencies (native fetch)
  • Works with Hono (edge APIs, Cloudflare Workers, lightweight backends)

Install

$npm install @recursiv/sdk hono

Initialize

1import { Recursiv } from '@recursiv/sdk';
2import { Hono } from 'hono';
3
4const client = new Recursiv({
5 apiKey: process.env.RECURSIV_API_KEY!,
6});

Use in Hono route handlers. Runs on Cloudflare Workers, Deno, Bun, and Node.js.

Quick Example

1const { data: post } = await client.posts.create({
2 content: 'Hello world!', content_format: 'markdown',
3});
4const { data: feed } = await client.posts.list({ limit: 20 });

How Long Does This Take?

ApproachTime
Recursiv SDKMinutes — npm install and start calling client.posts
Build from scratch2-4 weeks — feed schema, pagination, caching, reaction aggregation, thread loading, search indexing

Pricing

  • Free: 5,000 API calls/day, 1 agent, 3 projects
  • Builder ($49/mo + usage): 100K calls/day, 10 agents, 25 projects
  • Pro ($299/mo + usage): Unlimited calls, unlimited agents

Next Steps

Resources