Skip to main content
GET
/
v2
/
burn
/
USDC
/
fees
/
{sourceDomainId}
/
{destDomainId}
Get USDC transfer fees
curl --request GET \
  --url https://iris-api-sandbox.circle.com/v2/burn/USDC/fees/{sourceDomainId}/{destDomainId}
{
  "data": [
    {
      "finalityThreshold": 1000,
      "minimumFee": 1
    },
    {
      "finalityThreshold": 2000,
      "minimumFee": 0
    }
  ]
}

Path Parameters

sourceDomainId
integer
required

Source domain identifier for a blockchain on CCTP.

Required range: x >= 0
Example:

3

destDomainId
integer
required

Destination domain identifier for a blockchain on CCTP.

Required range: x >= 0
Example:

3

Response

Successfully retrieved the USDC transfer fees.

data
object[]
Example:
[
{
"finalityThreshold": 1000,
"minimumFee": 1
},
{
"finalityThreshold": 2000,
"minimumFee": 0
}
]
I