POST
/api/v2/banking/quotesGet a quote for a transfer
Authentication
Send your API key in the x-api-key header on every request.
Parameters
| Field | Type | Required | Description |
|---|---|---|---|
| userId (query) | unknown | No |
Request body
application/json
| Field | Type | Required | Description |
|---|---|---|---|
| SourceAccountId | string | No | |
| PayeeId | unknown | No | |
| Amount | unknown | No | |
| SourceCurrency | string | No | |
| TargetCurrency | string | No |
Responses
200 — OK
| Field | Type | Required | Description |
|---|---|---|---|
| QuoteId | string | No | |
| SourceAmount | unknown | No | |
| SourceCurrency | string | No | |
| TargetAmount | unknown | No | |
| TargetCurrency | string | No | |
| ExchangeRate | unknown | No | |
| Fee | unknown | No | |
| Provider | BankProvider | No | Indicates which banking provider owns a resource |
| ExpiresAt | string (date-time) | No |
401 — Unauthorized
| Field | Type | Required | Description |
|---|---|---|---|
| Message | string | No | |
| Code | string | No | |
| Status | unknown | No | |
| ValidationErrors | object | No | |
| Details | string | No |
500 — Internal Server Error
| Field | Type | Required | Description |
|---|---|---|---|
| Message | string | No | |
| Code | string | No | |
| Status | unknown | No | |
| ValidationErrors | object | No | |
| Details | string | No |
Example request
curl -X POST "https://{base_url}/api/v2/banking/quotes" \
-H "x-api-key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{}'This page is generated from the live OpenAPI specification and always matches the current API.