Skip to main content
POST
/
users
/
@me
/
connections
/
verify
Verify and create connection
curl --request POST \
  --url https://api.fluxer.app/v1/users/@me/connections/verify \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "initiation_token": "<string>",
  "visibility_flags": 1073741823
}
'
{
  "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.

Body

application/json
initiation_token
string
required

The signed initiation token returned from the create endpoint

visibility_flags
integer<int32>
Required range: 0 <= x <= 2147483647

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