Skip to main content
GET
/
users
/
@me
/
connections
List user connections
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
  }
]

Authorizations

Authorization
string
header
required

Bot token: Authorization: Bot <token>. This is the primary authentication method for bot applications.

Response

Success

id
string
required

The unique identifier for this connection

type
enum<string>
required

The type of connection

Available options:
bsky,
domain
name
string
required

The display name of the connection (handle or domain)

verified
boolean
required

Whether the connection has been verified

visibility_flags
integer<int32>
required

Bitfield controlling who can see this connection

Required range: 0 <= x <= 2147483647
sort_order
integer<int32>
required

The display order of this connection

Required range: 0 <= x <= 2147483647