GET /chains

Get all the chain supported by Native

GET https://newapi.native.org/v1/chains

Almost all the Native API request requires you to include the chain name. This endpoint returns the list of blockchain names used across Native services.

Headers

Response

Type: Array of chains

Example response:

[
    {
        "chainId": 56,
        "chain": "bsc",
        "label": "Binance",
        "token": "BNB",
        "isMainnet": true
    },
    {
        "chainId": 1,
        "chain": "ethereum",
        "label": "Ethereum",
        "token": "ETH",
        "isMainnet": true
    },
    {
        "chainId": 137,
        "chain": "polygon",
        "label": "Polygon",
        "token": "MATIC",
        "isMainnet": true
    },
    {
        "chainId": 42161,
        "chain": "arbitrum",
        "label": "Arbitrum",
        "token": "ETH",
        "isMainnet": true
    },
    {
        "chainId": 43114,
        "chain": "avalanche",
        "label": "Avalance",
        "token": "AVAX",
        "isMainnet": true
    }
]

Note that we will be using chain value as a param to request other APIs if required.

You may try this endpoint out here.

Last updated