Skip to main content
POST
/
api
/
grid
/
v1
/
accounts
/
{address}
/
kyc
cURL
curl --request POST \
  --url https://grid.squads.xyz/api/grid/v1/accounts/{address}/kyc \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "<string>",
  "endorsements": [
    "<string>"
  ],
  "full_name": "<string>",
  "type": "<string>",
  "redirect_uri": "<string>"
}
'
{
  "data": {
    "created_at": "2023-11-07T05:31:56Z",
    "customer_id": "<string>",
    "email": "<string>",
    "full_name": "<string>",
    "id": "<string>",
    "kyc_link": "<string>",
    "kyc_status": "<string>",
    "persona_inquiry_type": "<string>",
    "tos_link": "<string>",
    "tos_status": "<string>",
    "type": "<string>",
    "rejection_reasons": "<unknown>"
  },
  "metadata": {
    "request_id": "<string>",
    "timestamp": "2023-11-07T05:31:56Z"
  }
}

Documentation Index

Fetch the complete documentation index at: https://developers.squads.so/llms.txt

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

Authorizations

Authorization
string
header
required

Your Grid API key from the Grid Dashboard

Path Parameters

address
string
required

Smart account address (Solana public key)

Body

application/json
email
string
required
endorsements
string[]
required
full_name
string
required
type
string
required
redirect_uri
string | null

Response

KYC link created successfully

data
object
required
metadata
object
required