Skip to main content
GET
/
api
/
funding
/
tokens
List accepted tokens per network
curl --request GET \
  --url https://mag3nt.com/api/funding/tokens
{
  "registry": {
    "eip155:8453": [
      {
        "symbol": "USDC",
        "type": "erc20",
        "decimals": 6,
        "contract": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"
      }
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.mag3nt.com/llms.txt

Use this file to discover all available pages before exploring further.

Response

200 - application/json

Token registry

registry
object

Map of CAIP-2 network IDs to supported tokens

Example:
{
"eip155:8453": [
{
"symbol": "USDC",
"type": "erc20",
"decimals": 6,
"contract": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"
}
]
}