Skip to main content
POST
/
v1
/
connect
/
complete
Complete Onboarding
curl --request POST \
  --url https://api.aegisintent.xyz/v1/connect/complete \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "jsmith@example.com",
  "otp": "<string>"
}
'
{
  "success": true,
  "token": "<string>",
  "agent": {
    "id": "<string>",
    "email": "<string>",
    "walletAddress": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.aegisintent.xyz/llms.txt

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

Validate the 6-digit email OTP challenge to authorize the connection. If correct, this returns a high-entropy JWT Bearer session token and details of the linked Developer-Controlled Wallet.

Body

application/json
email
string<email>
required
otp
string
required

6-digit verification code

Response

200 - application/json

Onboarding complete and token generated

success
boolean
token
string
agent
object