GET
/
api
/
chains
/
{chainId}
curl --request GET \
  --url https://api-staging.adamik.io/api/chains/{chainId} \
  --header 'Authorization: <api-key>'
{
  "chain": {
    "family": "algorand",
    "id": "bitcoin",
    "nativeId": "<string>",
    "name": "<string>",
    "ticker": "<string>",
    "decimals": 123,
    "isTestnetFor": "<string>",
    "supportedFeatures": {
      "read": {
        "token": true,
        "validators": true,
        "transaction": {
          "native": true,
          "tokens": true,
          "staking": true
        },
        "account": {
          "balances": {
            "native": true,
            "tokens": true,
            "staking": true
          },
          "transactions": {
            "native": true,
            "tokens": true,
            "staking": true
          }
        }
      },
      "write": {
        "transaction": {
          "type": {
            "deployAccount": true,
            "transfer": true,
            "transferToken": true,
            "delegate": true,
            "redelegate": true,
            "undelegate": true,
            "claimRewards": true
          },
          "field": {
            "memo": true
          }
        }
      }
    }
  }
}

Authorizations

Authorization
string
header
required

Path Parameters

chainId
enum<string>
required

Unique adamik identifier of the chain

Available options:
algorand,
ethereum,
sepolia,
holesky,
zksync,
zksync-sepolia,
injective-evm-testnet,
base,
base-sepolia,
optimism,
optimism-sepolia,
arbitrum,
arbitrum-sepolia,
polygon,
polygon-amoy,
bsc,
bsc-testnet,
linea,
linea-sepolia,
avalanche,
avalanche-fuji,
gnosis,
gnosis-chiado,
moonbeam,
moonriver,
moonbase,
fantom,
mantle,
chiliz,
chiliz-testnet,
ton,
tron,
rootstock,
rootstock-testnet,
bitcoin,
bitcoin-testnet,
litecoin,
dogecoin,
starknet,
monad-private-testnet,
bitsong,
chihuahua,
seda,
persistence,
comdex,
humans-ai,
ki,
mars-hub,
provenance,
quicksilver,
saga,
ux-chain,
kava,
sei,
fetch-ai,
cosmoshub,
osmosis,
celestia,
dydx,
axelar,
evmos,
irisnet,
juno,
lum-network,
omniflix,
medibloc,
passage,
quasar,
sommelier,
shentu,
stride,
neutron,
terra2,
akash,
dymension,
band,
stargaze,
kyve,
likecoin,
osmosis-testnet,
celestia-testnet,
cosmoshub-testnet,
injective

Response

200 - application/json
Successfully returns detailed data about the specified blockchain, including its identifier, name, family classification, supported units of currency, and additional configuration parameters.
chain
object
required