Skip to main content
POST
/
v3
/
api
/
interchange
/
settlement
/
wallet
/
whitelisted
/
address
List interchange whitelisted addresses
curl --request POST \
  --url https://api.custody.api-zodia.io/v3/api/interchange/settlement/wallet/whitelisted/address \
  --header 'Content-Type: application/json' \
  --header 'X-Signature: <api-key>' \
  --data '
{
  "paginationLimit": 10,
  "paginationOffset": 0,
  "addresses": [
    "<string>"
  ],
  "blockchains": [
    "ETH"
  ],
  "blockchainIds": [
    "eth-eth"
  ],
  "statuses": [
    "ACTIVE"
  ]
}
'
{
  "items": [
    {
      "address": "<string>",
      "addressPurpose": [
        "INCOMING"
      ],
      "status": "ACTIVE",
      "createdAt": "2024-12-31T23:59:59.999Z",
      "blockchain": "ETH",
      "blockchainId": "eth-eth"
    }
  ],
  "total": 1
}

Authorizations

X-Signature
string
header
required

Body

application/json
paginationLimit
integer<int32>
default:10
Required range: 1 <= x <= 1024
paginationOffset
integer<int32>
default:0
Required range: x >= 0
addresses
string[]
blockchains
string[]

Search by blockchain

blockchainIds
string[]

Search by blockchainId

statuses
enum<string>[]
Available options:
ACTIVE,
DEACTIVATED

Response

OK

items
object[]
required
total
integer<int32>
required
Example:

1