API reference

Twitter — List comment replies

Return a stable page of replies for one comment. Use find_test_data to discover compatible post and comment IDs.

Return a stable page of replies for one comment. Use find_test_data to discover compatible post and comment IDs.

The API key selects Test or Live. Do not send an environment header, parameter, or tool argument. null means unavailable, not zero.

Find compatible test data before you need another state.

The TypeScript and Go tabs use the official SDKs.

Request

Test

curl "https://api.openhandle.dev/v1/twitter/posts/940100000000000001/comments/940200000000000001/replies?freshness=24h" \
  -H "Authorization: Bearer $OPENHANDLE_TEST_KEY"

Expected: HTTP 200, Openhandle-Environment: test, Openhandle-Cost: 0.000, and dataset 2026-09-07.1. Fixture: twitter.comment.copperfield-comment.

Live

curl "https://api.openhandle.dev/v1/twitter/posts/$POST_ID/comments/$COMMENT_ID/replies?freshness=24h" \
  -H "Authorization: Bearer $OPENHANDLE_LIVE_KEY"

Live uses the same response schema and errors. It uses real public identifiers and normal billing.

Common parameters

  • freshness: live, 24h (default), 7d, or 30d.
  • cursor: opaque meta.cursors.next value from the previous page.

Answered Test results—including private and not-found answers—record a $0.000 actual charge and a separate live-equivalent price. Authentication, validation, rate-limit, service, and internal failures create request history only.

On this page