Initiates a new external service connection and returns verification instructions. No database record is created until verification succeeds.
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>"
}Bot token: Authorization: Bot <token>. This is the primary authentication method for bot applications.
Success
The verification token to place in DNS or profile
The type of connection being verified
bsky, domain The connection identifier (handle or domain)
Human-readable instructions for completing verification
Signed token the client sends back at verify time
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>"
}