# Threads Post API (https://www.socialcrawl.dev/platforms/threads/post) > Returns detailed information about a specific Threads post including the text content, like count, reply count, repost count, media attachments, author info, and creation timestamp. TL;DR: `GET /v1/threads/post` 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 | | `trim` | no | Set to true for a trimmed down version of the response | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/threads/post?url=https%3A%2F%2Fwww.threads.net%2F%40zuck%2Fpost%2FCwABCDEFGHI" \ -H "x-api-key: sc_YOUR_API_KEY" ``` ## FAQ ### How do I get a Threads post's details with an API? Send a GET request to /v1/threads/post with the full post URL in the url parameter. SocialCrawl returns the post text, like count, reply count, repost count, view count, media attachments, and author information. ### What engagement fields does the endpoint return? The response breaks engagement into likes, comments (replies), shares (reposts), saves (reshares), and views. Every field lives under the unified post.engagement object so you can compare engagement across platforms with the same code. ### Does it work for video posts and reshared content? Yes. Video posts return the same core fields plus thumbnail, duration, and view count. Reshared posts include the original author info so you can trace the post back to its source without extra lookups. ### Can I trim the response to just the essentials? Yes. Pass trim=true and the endpoint returns a compact payload with only the core fields. Handy for dashboards and feeds where you display a summary and only fetch the full post on demand. ### How fast is the Threads Post API? Most requests return JSON in 1–3 seconds. The endpoint uses the post cache category, so repeat requests for the same post URL come back faster from the SocialCrawl cache with no extra credit charge on cache hits. 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 ## Explore with AI Questions this API answers, phrased for an AI assistant: - How to fetch a Threads post's details with an API - What does the SocialCrawl Threads Post API return?