Skip to main content
POST
/
social_accounts
/
connect_url
Generate OAuth connection link
curl --request POST \
  --url https://api.juicer.io/v1/social_accounts/connect_url \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "provider": "facebook"
}
'
{
  "data": {
    "provider": "<string>",
    "connection_url": "<string>",
    "expires_at": "2023-11-07T05:31:56Z",
    "allows_multiple": true,
    "note": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://developers.juicer.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key prefixed with jcr_. To obtain a key programmatically (no dashboard required), see POST /v1/authorize.

Body

application/json
provider
string
required

OAuth provider name. Use the provider field from GET /social_accounts/status or the requires_connection.provider field from GET /platforms. Common values: facebook, instagram_login, twitter_v5, tiktok, slack, tumblr.

Example:

"facebook"

Response

Magic link created

data
object