Skip to main content
POST
/
api
/
v1
/
liquidity
/
onboarding
/
whitelist
Add Wallet into Whitelist
curl --request POST \
  --url https://api.mansafinance.co/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
client_id
string<uuid>
required
client_request_id
string<uuid>
required
wallet_address
string
required
label
string
required
Maximum length: 100
network
string
required
Example:

"Polygon"

created_at
string<date-time>
updated_at
string<date-time>

Response

Wallet added to whitelist

message
string
Example:

"Wallet added to whitelist"

wallet_address
string
Example:

"0xDEF456..."