Skip to main content
GET
/
v1
/
info
Get Gateway info for supported domains and tokens
curl --request GET \
  --url https://gateway-api.circle.com/v1/info
{
  "version": 123,
  "domains": [
    {
      "chain": "Ethereum",
      "network": "Sepolia",
      "domain": 0,
      "walletContract": {
        "address": "<string>",
        "supportedTokens": [
          "USDC"
        ]
      },
      "minterContract": {
        "address": "<string>",
        "supportedTokens": [
          "USDC"
        ]
      },
      "processedHeight": "8666762",
      "burnIntentExpirationHeight": "8666792"
    }
  ]
}

Response

200 - application/json

Gateway info

Response containing information about supported domains and tokens

version
integer
required

API version number

domains
object[]
required

List of supported domains and their contract information

I