List posts from a Bluesky profile by handle.
Endpoint
/v1/bluesky/profiles/{handle}/posts
Path
Bluesky handle whose posts should be listed.
Query
Pagination cursor returned by a previous response.
Optional Bluesky user id to speed up the request.
const response = await fetch( "https://api.socialfetch.dev/v1/bluesky/profiles/espn.com/posts", { headers: { "x-api-key": "YOUR_API_KEY" } } ); const data = await response.json(); console.log(data);