Create a quote
Generate a time-limited quote for asset conversion, providing exchange rate and amount calculations.
Note: These endpoints are currently in beta and might be subject to changes.
If you want to participate and learn more about the Fireblocks Trading, please contact your Fireblocks Customer Success Manager or send an email to CSM@fireblocks.com.
Endpoint Permission: Owner, Admin, Non-Signing Admin, Signer, Editor.
For detailed information about error codes and troubleshooting, please refer to our API Error Codes documentation.
Documentation Index
Fetch the complete documentation index at: https://developers.fireblocks.com/llms.txt
Use this file to discover all available pages before exploring further.
Headers
A unique identifier for the request. If the request is sent multiple times with the same idempotency key, the server will return the same response as the first request. The idempotency key is valid for 24 hours.
Body
The asset you receive on BUY / give on SELL.
The counter asset used to pay/receive.
Amount in baseAssetId. BUY = base amount to receive; SELL = base amount to sell.
^\d+(\.\d+)?$"100.00"
BUY: receive base / pay quote; SELL: give base / receive quote.
BUY, SELL Transfer rail:
- BLOCKCHAIN - Transfer over the public blockchain
- INTERNAL - Internal transfer within the same account (e.g. sub-accounts or same api key)
- SWIFT - International wire transfer
- IBAN - International Bank Account Number transfer
- US_WIRE - Domestic wire transfer within the United States (e.g. FedWire)
- ACH - Automated Clearing House transfer, typically takes longer but not as expensive as wire transfers
- SEPA - Euro transfers within the SEPA zone
- SPEI - Mexican interbank electronic payment system
- PIX - Brazilian instant payment system
- LBT - Local bank transfers within Africa
- MOMO - Mobile money transfers (e.g. M-Pesa)
- CHAPS - The Clearing House Automated Payment System (CHAPS) is a real-time gross settlement payment system used for transactions in the United Kingdom
- PAYID - PayID payment identifier system (Australia)
- INTERAC - Interac electronic funds transfer (Canada)
- INTERNAL_TRANSFER - Internal transfer between accounts
BLOCKCHAIN, INTERNAL, SWIFT, IBAN, US_WIRE, ACH, SEPA, SPEI, PIX, LBT, MOMO, CHAPS, PAYID, INTERAC, INTERNAL_TRANSFER "BLOCKCHAIN"
Transfer rail:
- BLOCKCHAIN - Transfer over the public blockchain
- INTERNAL - Internal transfer within the same account (e.g. sub-accounts or same api key)
- SWIFT - International wire transfer
- IBAN - International Bank Account Number transfer
- US_WIRE - Domestic wire transfer within the United States (e.g. FedWire)
- ACH - Automated Clearing House transfer, typically takes longer but not as expensive as wire transfers
- SEPA - Euro transfers within the SEPA zone
- SPEI - Mexican interbank electronic payment system
- PIX - Brazilian instant payment system
- LBT - Local bank transfers within Africa
- MOMO - Mobile money transfers (e.g. M-Pesa)
- CHAPS - The Clearing House Automated Payment System (CHAPS) is a real-time gross settlement payment system used for transactions in the United Kingdom
- PAYID - PayID payment identifier system (Australia)
- INTERAC - Interac electronic funds transfer (Canada)
- INTERNAL_TRANSFER - Internal transfer between accounts
BLOCKCHAIN, INTERNAL, SWIFT, IBAN, US_WIRE, ACH, SEPA, SPEI, PIX, LBT, MOMO, CHAPS, PAYID, INTERAC, INTERNAL_TRANSFER "BLOCKCHAIN"
Slippage tolerance in basis points (bps) for defi quotes - 1 is 0.01% and 10000 is 100%
1 <= x <= 10000Source/Destination accounts for the quote (must have for defi quotes)
{
"type": "DVP",
"sourceAccount": {
"type": "VAULT_ACCOUNT",
"id": "vault_acc_3f7e1d9b2c5a8e4f"
},
"destinationAccount": {
"type": "VAULT_ACCOUNT",
"id": "vault_acc_7b2e5d8f1c4a9e3b"
}
}
KYC/AML participant identification
{
"originator": {
"externalReferenceId": "user_123456",
"entityType": "INDIVIDUAL",
"participantRelationshipType": "FirstParty",
"fullName": { "firstName": "John", "lastName": "Smith" },
"dateOfBirth": "1985-03-15",
"email": "john.smith@example.com",
"phone": "+14155551234",
"postalAddress": {
"streetName": "Main Street",
"buildingNumber": "123",
"postalCode": "10001",
"city": "New York",
"subdivision": "NY",
"district": "Manhattan",
"country": "US"
}
},
"beneficiary": {
"externalReferenceId": "user_789012",
"entityType": "INDIVIDUAL",
"participantRelationshipType": "ThirdParty",
"fullName": {
"firstName": "Alice",
"lastName": "Johnson"
},
"dateOfBirth": "1990-07-22",
"email": "alice.johnson@example.com",
"phone": "+14155551234",
"postalAddress": {
"streetName": "Broadway",
"buildingNumber": "456",
"postalCode": "10002",
"city": "New York",
"subdivision": "NY",
"district": "Manhattan",
"country": "US"
}
}
}