List supported chains
curl --request GET \
--url https://api.hypermid.io/v1/chains \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.hypermid.io/v1/chains"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.hypermid.io/v1/chains', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.hypermid.io/v1/chains",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.hypermid.io/v1/chains"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.hypermid.io/v1/chains")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.hypermid.io/v1/chains")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": {
"chains": [
{
"id": 1,
"name": "Ethereum",
"type": "EVM",
"nativeToken": {
"symbol": "ETH",
"decimals": 18,
"address": "0x0000000000000000000000000000000000000000",
"priceUSD": "3250.00"
},
"blockExplorerUrl": "https://etherscan.io",
"rpcUrl": "https://eth.llamarpc.com"
},
{
"id": 42161,
"name": "Arbitrum",
"type": "EVM",
"nativeToken": {
"symbol": "ETH",
"decimals": 18,
"address": "0x0000000000000000000000000000000000000000",
"priceUSD": "3250.00"
},
"blockExplorerUrl": "https://arbiscan.io",
"rpcUrl": "https://arb1.arbitrum.io/rpc"
},
{
"id": 900000001,
"name": "NEAR",
"type": "NEAR_INTENTS",
"nativeToken": {
"symbol": "NEAR",
"decimals": 24,
"address": "near",
"priceUSD": "5.20"
},
"blockExplorerUrl": "https://nearblocks.io"
}
]
},
"error": null,
"meta": {
"requestId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"timestamp": 1711234567,
"rateLimit": {
"limit": 2000,
"remaining": 1999,
"reset": 1711234627
}
}
}
Discovery
Get Chains
List all supported blockchains
GET
/
v1
/
chains
List supported chains
curl --request GET \
--url https://api.hypermid.io/v1/chains \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.hypermid.io/v1/chains"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.hypermid.io/v1/chains', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.hypermid.io/v1/chains",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.hypermid.io/v1/chains"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.hypermid.io/v1/chains")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.hypermid.io/v1/chains")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": {
"chains": [
{
"id": 1,
"name": "Ethereum",
"type": "EVM",
"nativeToken": {
"symbol": "ETH",
"decimals": 18,
"address": "0x0000000000000000000000000000000000000000",
"priceUSD": "3250.00"
},
"blockExplorerUrl": "https://etherscan.io",
"rpcUrl": "https://eth.llamarpc.com"
},
{
"id": 42161,
"name": "Arbitrum",
"type": "EVM",
"nativeToken": {
"symbol": "ETH",
"decimals": 18,
"address": "0x0000000000000000000000000000000000000000",
"priceUSD": "3250.00"
},
"blockExplorerUrl": "https://arbiscan.io",
"rpcUrl": "https://arb1.arbitrum.io/rpc"
},
{
"id": 900000001,
"name": "NEAR",
"type": "NEAR_INTENTS",
"nativeToken": {
"symbol": "NEAR",
"decimals": 24,
"address": "near",
"priceUSD": "5.20"
},
"blockExplorerUrl": "https://nearblocks.io"
}
]
},
"error": null,
"meta": {
"requestId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"timestamp": 1711234567,
"rateLimit": {
"limit": 2000,
"remaining": 1999,
"reset": 1711234627
}
}
}
Returns the list of all blockchains supported by Hypermid, including EVM chains, Solana, Bitcoin, and intent-based chains.
Filter by chain type. Possible values:
EVM, SVM, UTXO, NEAR_INTENTS.{
"data": {
"chains": [
{
"id": 1,
"name": "Ethereum",
"type": "EVM",
"nativeToken": {
"symbol": "ETH",
"decimals": 18,
"address": "0x0000000000000000000000000000000000000000",
"priceUSD": "3250.00"
},
"blockExplorerUrl": "https://etherscan.io",
"rpcUrl": "https://eth.llamarpc.com"
},
{
"id": 42161,
"name": "Arbitrum",
"type": "EVM",
"nativeToken": {
"symbol": "ETH",
"decimals": 18,
"address": "0x0000000000000000000000000000000000000000",
"priceUSD": "3250.00"
},
"blockExplorerUrl": "https://arbiscan.io",
"rpcUrl": "https://arb1.arbitrum.io/rpc"
},
{
"id": 900000001,
"name": "NEAR",
"type": "NEAR_INTENTS",
"nativeToken": {
"symbol": "NEAR",
"decimals": 24,
"address": "near",
"priceUSD": "5.20"
},
"blockExplorerUrl": "https://nearblocks.io"
}
]
},
"error": null,
"meta": {
"requestId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"timestamp": 1711234567,
"rateLimit": {
"limit": 2000,
"remaining": 1999,
"reset": 1711234627
}
}
}
const chains = await client.getChains();
// Filter for EVM chains only
const evmChains = chains.data.chains.filter(c => c.type === "EVM");
console.log(`Found ${evmChains.length} EVM chains`);
curl https://api.hypermid.io/v1/chains \
-H "X-API-Key: your-api-key"
req, _ := http.NewRequest("GET", "https://api.hypermid.io/v1/chains", nil)
req.Header.Set("X-API-Key", "your-api-key")
resp, _ := http.DefaultClient.Do(req)
Authorizations
Partner API key. Optional for public endpoints, required for /v1/partner/*.
⌘I