Developer platform
Build on Xora.
A clean, typed REST + WebSocket API for posts, reels, stories, messages and more. Free up to 10K requests/day.
OAuth 2.0
Drop-in auth with PKCE. 10 scopes covering posts, DMs and analytics.
Webhooks
Subscribe to events: new follower, comment, mention, story view.
Realtime
WebSocket streams for live engagement. <50ms median latency.
SDKs
Official clients for JS, Python, Go and Swift. Full type safety.
Quickstart
posts.ts
// Fetch the authenticated user's recent posts
import Xora from "@xora/sdk";
const xora = new Xora({ token: process.env.XORA_TOKEN });
const { posts } = await xora.posts.list({
author: "me",
limit: 20,
});
for (const p of posts) {
console.log(p.id, p.likeCount, p.caption);
}Rate limits
Free
10 req/s
10,000 / day
Pro
100 req/s
1M / day
Scale
1,000 req/s
Custom