curl --request POST \
--url https://crypto.westminister.tech/api/v1/auth/pricing/fx-quotes \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"flow_type": "onramp",
"asset": "<string>",
"fiat_currency": "<string>",
"reference_rate": "<string>",
"source": "<string>",
"network": "<string>",
"applied_rate": "<string>",
"spread_bps": 123,
"expires_at": "2023-11-07T05:31:56Z",
"is_active": true
}
'Stores a reference and applied rate for a flow/asset/fiat pair. Used with pricing profiles when creating orders or transfers.
curl --request POST \
--url https://crypto.westminister.tech/api/v1/auth/pricing/fx-quotes \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"flow_type": "onramp",
"asset": "<string>",
"fiat_currency": "<string>",
"reference_rate": "<string>",
"source": "<string>",
"network": "<string>",
"applied_rate": "<string>",
"spread_bps": 123,
"expires_at": "2023-11-07T05:31:56Z",
"is_active": true
}
'Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Created