Skip to main content
POST
/
users
/
@me
/
connections
Initiate connection
curl --request POST \
  --url https://api.fluxer.app/v1/users/@me/connections \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "type": "bsky",
  "identifier": "<string>",
  "visibility_flags": 1073741823
}
'
{
  "token": "<string>",
  "type": "bsky",
  "id": "<string>",
  "instructions": "<string>",
  "initiation_token": "<string>"
}

Authorizations

Authorization
string
header
required

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

Body

application/json
type
enum<string>
required

The type of connection to create

Available options:
bsky,
domain
identifier
string
required

The connection identifier (handle or domain)

Required string length: 1 - 253
visibility_flags
integer<int32>
Required range: 0 <= x <= 2147483647

Response

Success

token
string
required

The verification token to place in DNS or profile

type
enum<string>
required

The type of connection being verified

Available options:
bsky,
domain
id
string
required

The connection identifier (handle or domain)

instructions
string
required

Human-readable instructions for completing verification

initiation_token
string
required

Signed token the client sends back at verify time