Skip to main content

๐Ÿ“Š Market data now included in /global/networksInfo

ยท 2 min read

The /global/networksInfo endpoint now returns market data alongside network status, and we've added support for 20+ new EVM networks.

Previously, you needed to call both /global/markets and /global/networksInfo to get complete network information. Now everything is unified in a single response.

What changedโ€‹

Updated endpoint: /global/networksInfo

Now includes market data for each network:

const response = await fetch('https://api.chaingate.dev/global/networksInfo')
const networks = await response.json()

// Example response:
[
{
"id": "ethereum",
"name": "Ethereum",
"symbol": "ETH",
"rateUsd": "1818.54",
"vol24h": "8508482393",
"marketCap": "218000000000",
"logoUrl": "https://api.chaingate.dev/global/logo/ethereum",
"blockTimeSecs": 12,
"blockTimeMs": 12000,
"networkOccupation": 0.78,
"supportsEIP1559": true,
"typicalTransactionCost": "0.00042",
"currentBaseFeeGWei": "18.23",
"predictedBaseFeeGWei": "19.05",
"predictedTips": [...]
},
// ... other networks
]

New fieldsโ€‹

Each network object now includes:

  • rateUsd - Current price in USD
  • vol24h - 24-hour trading volume
  • marketCap - Market capitalization

The /global/markets endpoint also now returns marketCap in its response.

New networks supportedโ€‹

We've expanded support to include additional EVM networks:

Optimism, Linea, PulseChain, Blast, Scroll, Gnosis Chain, Unichain, opBNB, Kava, Moonbeam, Taiko, Chiliz, Evmos, Mantle, Moonriver, Celo, Syscoin, Berachain, and Soneium.

Use casesโ€‹

This update is useful for:

  • Building network selectors that show both gas prices and token values
  • Creating dashboards that display network health and market data together
  • Reducing API calls by fetching everything in one request

Notesโ€‹

  • The new networks are exclusively available in the /global/markets endpoint
  • Individual endpoints remain available for backward compatibility