Skip to main content

Get Latest Posts

Used to get the most recent post from a user.

With a filter applied, this will return the most recent post (singular) that match the filter.

GET https://api.itsjusttriz.com/bsky/latest/:handle

Request Parameters

IdentifierDescriptionRequired
:handleThe @ handle associated with the bluesky account.

Query Parameters

IdentifierDescriptionRequired
filterFilters through the posts for certain content
E.g. ?filter=twitch.tv/itsjusttriz
rawForces a JSON response, holding all related data.
E.g. ?raw=true

Example Responses

{
"code": 200,
"message": string; // This will be the URL of the most recent post.
"payload": {...} // This will contain the post data, directly from the BlueSkyAPI.
}