Get a single Bluesky post by URL.
Endpoint
/v1/bluesky/posts
Query
Link to the Bluesky post.
const response = await fetch( "https://api.socialfetch.dev/v1/bluesky/posts?url=https://bsky.app/profile/espn.com/post/3lqdfq7fkvm2g", { headers: { "x-api-key": "YOUR_API_KEY" } } ); const data = await response.json(); console.log(data);