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
Identifier | Description | Required |
---|---|---|
:handle | The @ handle associated with the bluesky account. | ✅ |
Query Parameters
Identifier | Description | Required |
---|---|---|
filter | Filters through the posts for certain content E.g. ?filter=twitch.tv/itsjusttriz | ❌ |
raw | Forces a JSON response, holding all related data. E.g. ?raw=true | ❌ |
Example Responses
- Success
- Error
{
"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.
}
{
"code": 400,
"message": string; // This will detail the reason for the error.
}