Skip to main content
POST
/
trusted_destinations
Create new Trusted Destinations
curl --request POST \
  --url https://api.anchorage-staging.com/v2/trusted_destinations \
  --header 'Api-Access-Key: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "idempotentId": "1ca86e65-4340-4876-85f4-8334852b9c43",
  "trustedDestinations": [
    {
      "address": "2N19AcihQ1a4MxQW658UFHTioUNnMkiHPkw",
      "assetType": "BTC",
      "description": "<string>",
      "name": "<string>",
      "isNetworkLevel": true,
      "memo": "Internal trade ID 0xabc123",
      "trustedDestinationAmlQuestionnaire": {
        "destinationType": "FINANCIAL_INSTITUTION",
        "institutionCountry": "US",
        "institutionName": "Coinbase",
        "recipientCity": "San Francisco",
        "recipientCountry": "JP",
        "recipientFirstName": "Satoshi",
        "recipientFullName": "Satoshi Nakamoto",
        "recipientLastName": "Nakamoto",
        "recipientPostalCode": "65584-5678",
        "recipientStateProvince": "Wyoming",
        "recipientStreetAddress": "1234 NW Bobcat Lane, St. Robert, MO",
        "recipientType": "PERSON",
        "selfhostedDescription": "An explanation about where this address is held",
        "selfhostedWalletOwner": "MY_ORGANIZATION"
      }
    }
  ]
}
'
{
  "creationRequestId": "1ca86e65-4340-4876-85f4-8334852b9c43"
}

Authorizations

Api-Access-Key
string
header
required

An API key associated with a security role

Body

application/json

Create Trusted Destinations request

idempotentId
string
required

A client-provided unique ID for idempotent requests

Maximum string length: 128
Example:

"1ca86e65-4340-4876-85f4-8334852b9c43"

trustedDestinations
object[]
required
owner
object

The Owner of the Trusted Destinations

Response

Successfully started creation of Trusted Destinations

creationRequestId
string
required

The client-provided ID which can be used to specify this request in other operations

Maximum string length: 128
Example:

"1ca86e65-4340-4876-85f4-8334852b9c43"