Travel Rules
Create travel rule entry
REST API
- Introduction
- Requests
- Authentication
- Rate Limits
- Pagination
- Profiles
- Types
- Accounts
- Address Book
- Coinbase Accounts
- Conversions
- Currencies
- Fees
- Futures
- Loan
- Orders
- Products
- Profiles
- Reports
- Transfers
- Travel Rules
- Users
- Wrapped Assets
FIX API
Travel Rules
Create travel rule entry
Create travel rule entry for sending address
POST
/
travel-rules
Copy
Ask AI
curl --request POST \
--url https://api.exchange.coinbase.com/travel-rules \
--header 'Content-Type: application/json' \
--header 'cb-access-key: <api-key>' \
--header 'cb-access-passphrase: <api-key>' \
--header 'cb-access-sign: <api-key>' \
--header 'cb-access-timestamp: <api-key>' \
--data '{
"address": "<string>",
"originator_name": "<string>",
"originator_country": "<string>",
"vasp_id": "<string>",
"vasp_country": "<string>",
"lei_number": "<string>",
"originator_address": {
"address_1": "<string>",
"address_2": "<string>",
"address_3": "<string>",
"city": "<string>",
"state": "<string>",
"country": "<string>",
"postal_code": "<string>"
},
"wallet_type": "UNKNOWN_WALLET_TYPE",
"is_self_certified": true
}'
Copy
Ask AI
{
"id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"address": "<string>",
"originator_name": "<string>",
"originator_country": "<string>",
"vasp_id": "<string>",
"vasp_country": "<string>",
"lei_number": "<string>",
"originator_address": {
"address_1": "<string>",
"address_2": "<string>",
"address_3": "<string>",
"city": "<string>",
"state": "<string>",
"country": "<string>",
"postal_code": "<string>"
}
}
Authorizations
Body
application/json
Response
200
application/json
The response is of type object
.
Was this page helpful?
Copy
Ask AI
curl --request POST \
--url https://api.exchange.coinbase.com/travel-rules \
--header 'Content-Type: application/json' \
--header 'cb-access-key: <api-key>' \
--header 'cb-access-passphrase: <api-key>' \
--header 'cb-access-sign: <api-key>' \
--header 'cb-access-timestamp: <api-key>' \
--data '{
"address": "<string>",
"originator_name": "<string>",
"originator_country": "<string>",
"vasp_id": "<string>",
"vasp_country": "<string>",
"lei_number": "<string>",
"originator_address": {
"address_1": "<string>",
"address_2": "<string>",
"address_3": "<string>",
"city": "<string>",
"state": "<string>",
"country": "<string>",
"postal_code": "<string>"
},
"wallet_type": "UNKNOWN_WALLET_TYPE",
"is_self_certified": true
}'
Copy
Ask AI
{
"id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"address": "<string>",
"originator_name": "<string>",
"originator_country": "<string>",
"vasp_id": "<string>",
"vasp_country": "<string>",
"lei_number": "<string>",
"originator_address": {
"address_1": "<string>",
"address_2": "<string>",
"address_3": "<string>",
"city": "<string>",
"state": "<string>",
"country": "<string>",
"postal_code": "<string>"
}
}
Assistant
Responses are generated using AI and may contain mistakes.