Get User By Handle
Used to get information about a Bluesky user by their handle.
GET https://api.itsjusttriz.com/bsky/user/:handle
Request Parameters
Identifier | Description | Required |
---|---|---|
:handle | The @ handle associated with the bluesky account. | ✅ |
Query Parameters
Identifier | Description | Required |
---|---|---|
raw | Forces a JSON response, holding all related data. E.g. ?raw=true | ✅ |
Example Responses
- Success
- Error
{
"code": 200,
"message": "Success",
"payload": {...} // This will contain the user data, directly from the BlueSkyAPI.
}
{
"code": 400,
"message": string; // This will detail the reason for the error.
}