# Threads Post Comments API (https://www.socialcrawl.dev/platforms/threads/post-comments) > Returns the replies Threads bundles with a post, typically about 20 of them, not the full thread. Each comment carries its text, like count, direct reply count, author handle, display name, avatar and verification status, pinned flag, and creation timestamp. This is one window with no cursor, so there is no way to page deeper into a conversation. `comment.url` is constructed from the reply's shortcode and its author handle because the upstream sends no permalink on comment items. `comment.post_id` and `comment.parent_id` are null for the same reason: the upstream does not surface either id on a comment. Same upstream call as `/v1/threads/post`, so a post and its replies cost one call each. TL;DR: `GET /v1/threads/post/comments` costs 1 credit per call and returns SocialCrawl's unified JSON schema. Single x-api-key auth, 100 free credits on signup. ## Parameters | Parameter | Required | Description | | --- | --- | --- | | `url` | yes | Full URL of the Threads post whose replies you want | | `trim` | no | Set to true for a trimmed down version of the response | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/threads/post/comments?url=https%3A%2F%2Fwww.threads.com%2F%40zuck%2Fpost%2FDZpPDXbCeTt" \ -H "x-api-key: sc_YOUR_API_KEY" ``` See the full Threads API: https://www.socialcrawl.dev/platforms/threads ## Pricing - Standard endpoints: 1 credit per call - Advanced endpoints: 5 credits per call - Premium endpoints: 10 credits per call - 100 free credits on signup, no credit card required. Cached responses cost 0 credits. Credit packs never expire. - Full pricing: https://www.socialcrawl.dev/pricing