Provider docs

X (Twitter) APILive

Account timelines and single-post lookups over the public REST surface — the first live provider, served directly by the Go gateway.

Quickstart

These routes are plain GETs on the public surface:

# Posts by handle
curl -H "Authorization: Bearer $REPLYNODES_API_KEY" \
  "$BASE/v1/x/users/example/posts"

# Single post
curl -H "Authorization: Bearer $REPLYNODES_API_KEY" \
  "$BASE/v1/x/posts/1789400000000000001"

Operations

OperationParamsReturns
GET /v1/x/capabilitiesLive route table + provider status (unauthenticated).
GET /v1/x/users/{handle}/postscursor?Page of public posts by an account.
GET /v1/x/posts/{post_id}Single public post by numeric ID.

Data shape

URNs: x:post:…, x:user:…. Responses conform to the versioned normalized schema — see the full API reference for envelope, pagination, rate limits, and error codes.