# Bluesky Post API (https://www.socialcrawl.dev/platforms/bluesky/post) > Returns a single Bluesky post — record text, author info, embeds, replyCount, repostCount, likeCount, quoteCount, and a threaded `replies` array. TL;DR: `GET /v1/bluesky/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 | Bluesky post URL. | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/bluesky/post?url=https%3A%2F%2Fbsky.app%2Fprofile%2Fespn.com%2Fpost%2F3lqdfq7fkvm2g" \ -H "x-api-key: sc_YOUR_API_KEY" ``` ## FAQ ### How do I fetch a Bluesky post with an API? Send a GET request to /v1/bluesky/post with the post's bsky.app URL — for example https://bsky.app/profile/espn.com/post/3lqdfq7fkvm2g. SocialCrawl returns the post text, author, embeds, engagement counts, and a threaded replies array in one JSON payload. ### What fields does the Bluesky Post API return? The response includes the record text, author info, embeds (images, external links, quoted posts), replyCount, repostCount, likeCount, quoteCount, and a replies array that preserves the thread structure under the post. ### Does the Bluesky Post API include replies? Yes. The response carries a threaded replies array, so one request gives you the post and the conversation under it — useful for sentiment analysis, moderation review, and archiving full discussions without extra calls. ### How much does the Bluesky Post API cost? Each request costs 1 credit on the standard tier. New accounts get 100 free credits with no credit card required — enough to fetch 100 posts with their reply threads while you evaluate. ### Can I measure engagement on a viral Bluesky post? Yes. Poll the post URL on a schedule and store likeCount, repostCount, quoteCount, and replyCount over time to chart how a post spreads. The counts are normalized into the unified engagement object shared with Twitter and Threads endpoints. See the full Bluesky API: https://www.socialcrawl.dev/platforms/bluesky ## 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 Bluesky post and its replies with the SocialCrawl API - What does the SocialCrawl Bluesky Post API return?