Retrieves all external service connections for the authenticated user.
curl --request GET \
--url https://api.fluxer.app/v1/users/@me/connections \
--header 'Authorization: <api-key>'[
{
"id": "<string>",
"type": "bsky",
"name": "<string>",
"verified": true,
"visibility_flags": 1073741823,
"sort_order": 1073741823
}
]Bot token: Authorization: Bot <token>. This is the primary authentication method for bot applications.
Success
The unique identifier for this connection
The type of connection
bsky, domain The display name of the connection (handle or domain)
Whether the connection has been verified
Bitfield controlling who can see this connection
0 <= x <= 2147483647The display order of this connection
0 <= x <= 2147483647curl --request GET \
--url https://api.fluxer.app/v1/users/@me/connections \
--header 'Authorization: <api-key>'[
{
"id": "<string>",
"type": "bsky",
"name": "<string>",
"verified": true,
"visibility_flags": 1073741823,
"sort_order": 1073741823
}
]