Finrax API Documentation
DashboardResourcesMain
  • Introduction
  • Authorization
    • API Keys Management
    • Signature
    • Code snippets
  • Environments
  • Errors
  • Changelog
  • References
    • Crypto payments
      • 馃敀Request crypto payment
      • 馃敀Add payment details
      • 馃敀Get payment data
      • Fetch deposit amounts metadata
    • Crypto withdrawals
      • Request withdrawal metadata
      • 馃敁Get crypto withdrawal approval status
      • 馃敀Request crypto withdrawal
        • National Identifier Types
        • Name Identifier Type
    • Wallet Addresses
      • Validate address
    • Businesses
      • 馃敀Get business payments
      • 馃敀Get business withdrawals
      • 馃敀Get business balances
    • Callbacks
      • Deposit received notification
      • Withdrawal broadcast notification
      • Withdrawal approved/rejected notification
    • Currencies & Fees
      • Get all currencies
      • Get exchange rates [crypto to fiat]
      • Get exchange rates [fiat to fiat]
      • Get exchange rates [any currency to any currency]
Powered by GitBook
On this page

Was this helpful?

  1. References
  2. Wallet Addresses

Fetching whitelisted addresses

Last updated 5 months ago

Was this helpful?

Fetch whitelisted addresses

get

Fetch whitelisted addresses.

Authorizations
Query parameters
idstring 路 uuidOptional

Whitelisted address ID.

clientAddressIdstringOptional

Address ID provided by the client.

currencystring 路 enumOptional

Address cryptocurrency.

Example: BTCPossible values:
labelstringOptional

Label of the address, useful for grouping multiple whitelisted addresses.

Example: Users in Europe
beforeinteger 路 int64Optional

Address creation date range start, in UNIX seconds, exclusive.

Example: 1702894529
afterinteger 路 int64Optional

Address creation date range end, in UNIX seconds, exclusive.

Example: 1702894529
descendingstringOptional

Sort the results (by createdAt) in descending order.

Default: trueExample: true
limitinteger 路 max: 2000Optional

Limit of the results per request.

Default: 25Example: 25
Responses
200
Returns the matching whitelisted addresses.
application/json
Responseall of
get
GET /api/v1/whitelist-addresses HTTP/1.1
Host: 
Authorization: YOUR_API_KEY
Accept: */*
200

Returns the matching whitelisted addresses.

[
  {
    "address": "r9vLJhJG2mfdEuU4joACKLx6ovMLeuiaSC",
    "clientAddressId": "Address 1",
    "createdAt": 1677674793,
    "currency": "XRP",
    "destinationTag": "123344",
    "id": "3fcf9817-9e0e-42e7-bf90-f9ffd7548630",
    "label": "Label",
    "network": "XRP"
  },
  {
    "address": "0xcefcca169357a18eb8c3f230f92b58562e48cae5",
    "clientAddressId": "Address 2",
    "createdAt": 1676465834,
    "currency": "ETH",
    "id": "4a188186-4f1c-4797-ba43-98a8274e4067",
    "label": "Label",
    "network": "BSC"
  }
]