POST
/
issuer-quote
Create Issuer Quote
curl --request POST \
  --url https://api.paxos.com/v2/issuer-quote \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "profile_id": "<string>",
  "market": "<string>",
  "side": "BUY",
  "base_amount": "<string>"
}'
{
  "quote_id": "2ce28645-2e1c-4a5d-8799-90e7b6e02673",
  "market": "PAXGUSD",
  "side": "SELL",
  "quantity": "0.05",
  "price": "11.33",
  "fee": "0.02",
  "quote_amount": "0.34",
  "expires_at": "2025-09-11T11:23:03.327913249Z"
}
OAuth Scope
exchange:write_issuer_quote

Authorizations

Authorization
string
header
required

Paxos APIs use OAuth 2 with the client credentials grant flow.

Token URLs:

Learn more in the API credentials guide →

Body

application/json

Response

200 - application/json

A successful response.

The response is of type object.