Skip to main content
GET
/
recipients
/
{id}
/
destinations
List destinations
curl --request GET \
  --url https://api.platform.dakota.xyz/recipients/{id}/destinations \
  --header 'x-api-key: <api-key>'
{
  "data": [
    {
      "destination_id": "1NFHrqBHb3cTfLVkFSGmHZqdDPi",
      "destination_type": "crypto",
      "name": "My Ethereum Wallet",
      "crypto_address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
      "family": "evm",
      "network_id": "ethereum-mainnet"
    }
  ],
  "meta": {
    "total_count": 100,
    "has_more_after": true,
    "has_more_before": false,
    "limit_reached": false
  }
}

Authorizations

x-api-key
string
header
required

Path Parameters

id
string
required

KSUID is a 27-character globally unique ID that combines a timestamp with a random component. Used for all entity identifiers in the Dakota platform.

Required string length: 27
Example:

"1NFHrqBHb3cTfLVkFSGmHZqdDPi"

Query Parameters

destination_type
enum<string>

Filter destinations by type.

Available options:
crypto,
fiat_us,
fiat_iban

Response

List of destinations matching the filter criteria.

Wrapper for paginated list responses

data
(Crypto Destination Response · object | US Fiat Destination Response · object | IBAN Fiat Destination Response · object)[]
required

List of objects returned by the API

Response for a crypto destination.

meta
object
required

Meta information about the response