Skip to main content
POST
/
v1
/
connect
/
request
Create a Connect request
curl --request POST \
  --url https://api.swippee.com/v1/connect/request \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "scopes": [
    "identity",
    "income"
  ],
  "redirect_uri": "https://yourapp.com/cb"
}
'
{
  "request_token": "<string>",
  "connect_url": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.swippee.com/llms.txt

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

Authorizations

Authorization
string
header
required

Your API key from the dashboard, sent as Authorization: Bearer swippee_sk_live_....

Body

application/json
scopes
string[]
required
Example:
["identity", "income"]
redirect_uri
string
Example:

"https://yourapp.com/cb"

Response

Connect request

request_token
string
connect_url
string