Skip to main content
GET
/
v1
/
cpn
/
quotes
/
{quoteId}
Get details of a quote
curl --request GET \
  --url https://api.circle.com/v1/cpn/quotes/{quoteId} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "c4d1da72-111e-4d52-bdbf-2e74a2d803d5",
    "paymentMethodType": "SPEI",
    "blockchain": "ETH-SEPOLIA",
    "senderCountry": "MX",
    "destinationCountry": "MX",
    "createDate": "2023-01-01T12:04:05Z",
    "quoteExpireDate": "2023-01-01T12:04:05Z",
    "cryptoFundsSettlementExpireDate": "2023-01-01T12:04:05Z",
    "sourceAmount": {
      "amount": "10.000000",
      "currency": "USDC"
    },
    "destinationAmount": {
      "amount": "183.24",
      "currency": "MXN"
    },
    "fiatSettlementTime": {
      "max": "3",
      "min": "1",
      "unit": "DAYS"
    },
    "exchangeRate": {
      "pair": "USDC/MXN",
      "rate": "18.324000"
    },
    "fees": {
      "breakdown": [
        {
          "type": "BFI_TRANSACTION_FEE",
          "amount": {
            "amount": "0.240000",
            "currency": "USDC"
          }
        }
      ],
      "totalAmount": {
        "amount": "0.240000",
        "currency": "USDC"
      }
    },
    "senderType": "BUSINESS",
    "recipientType": "BUSINESS",
    "certificate": {
      "id": "c4d1da72-111e-4d52-bdbf-2e74a2d803d5",
      "domain": "api.circle.com",
      "jwk": {
        "crv": "P-256",
        "kid": "263521881931753643998528753619816524468853605762",
        "kty": "EC",
        "x": "KnxBe8fb2mL_Ve9-tqjGSkGgE9f0yohMkAvH_InaFtE",
        "y": "D41cVUpiKcey4LJKNFtUtmVHDWRmhjZapPLfryX5b1o"
      }
    },
    "quoteOptions": {
      "isFirstParty": true
    }
  }
}

Authorizations

Authorization
string
header
required

Circle's API Keys are formatted in the following structure "PREFIX:ID:SECRET". All three parts are requred to make a successful request.

Path Parameters

quoteId
string<uuid>
required

The quote id that was created previously.

Example:

"c4d1da72-111e-4d52-bdbf-2e74a2d803d5"

Response

The quote retrieved successfully.

data
object
required

A quote containing all the necessary information for a cryptocurrency payment transaction, including source and destination amounts, fees, exchange rates, and relevant timing information.

I