POST
/api/v2/banking/orders/quotePOST /api/v2/banking/orders/quote
Authentication
Send your API key in the x-api-key header on every request.
Parameters
| Field | Type | Required | Description |
|---|---|---|---|
| accountId (query) | string | No |
Request body
application/json
| Field | Type | Required | Description |
|---|---|---|---|
| sourceCurrency | EqualsMoneyQuoteCurrency | No | Currency details for quote request |
| targetCurrency | EqualsMoneyQuoteCurrency | No | Currency details for quote request |
| settlementDate | string | No | Settlement date in yyyyMMdd format, for example 20260505. The public API also accepts yyyy-MM-dd and converts it before calling Equals Money. Preferred format: yyyyMMdd, for example 20260505. The public API also accepts yyyy-MM-dd and converts it before calling Equals Money. |
| type | EqualsMoneyQuoteType | No | Quote type information |
Responses
200 — OK
| Field | Type | Required | Description |
|---|---|---|---|
| orderId | string | No | Order ID for the quote |
| quoteRequestId | string | No | Quote request ID |
| settlement | EqualsMoneyQuoteSettlement | No | Settlement details for quote |
| quote | EqualsMoneyQuoteDetails | No | Quote details including exchange rates |
400 — Bad Request
| Field | Type | Required | Description |
|---|---|---|---|
| Message | string | No | |
| Code | string | No | |
| Status | unknown | No | |
| ValidationErrors | object | No | |
| Details | string | No |
401 — Unauthorized
| Field | Type | Required | Description |
|---|---|---|---|
| Message | string | No | |
| Code | string | No | |
| Status | unknown | No | |
| ValidationErrors | object | No | |
| Details | string | No |
404 — Not Found
| 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/orders/quote" \
-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.