POST
/
api
/
v1
/
liquidity
/
onboarding
/
whitelist
Add Wallet into Whitelist
curl --request POST \
  --url https://api.mansa.io/api/v1/liquidity/onboarding/whitelist \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '{
  "client_id": "35afa53d-43ea-47e6-8695-f4f569389a63",
  "client_request_id": "be7faa23-a157-4c19-a008-e9800b352118",
  "wallet_address": "0xABC123...",
  "label": "New Trading Wallet",
  "network": "Polygon"
}'
{
  "message": "Wallet added to whitelist",
  "wallet_address": "0xDEF456..."
}

Authorizations

X-API-Key
string
header
required

API key for authentication

Authorization
string
header
required

JWT token following RFC001 specification

Body

application/json

Response

Wallet added to whitelist

The response is of type object.