Provider docs
Account timelines and single-post lookups over the public REST surface — the first live provider, served directly by the Go gateway.
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"
| Operation | Params | Returns |
|---|---|---|
| GET /v1/x/capabilities | — | Live route table + provider status (unauthenticated). |
| GET /v1/x/users/{handle}/posts | cursor? | Page of public posts by an account. |
| GET /v1/x/posts/{post_id} | — | Single public post by numeric ID. |
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.