List active AKKA execution chains
curl --request GET \
--url https://api.akka.finance/partner/v1/chains \
--header 'apikey: <api-key>'const options = {method: 'GET', headers: {apikey: '<api-key>'}};
fetch('https://api.akka.finance/partner/v1/chains', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.akka.finance/partner/v1/chains"
headers = {"apikey": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)[
{
"chainId": 123,
"name": "<string>",
"nativeSymbol": "<string>",
"nativeDecimals": 123,
"wrappedNative": {},
"routerAddress": "<string>",
"contractVersion": "<string>",
"operationalStatus": "ACTIVE",
"explorerUrl": {},
"routerCodeHash": {},
"deploymentBlock": {},
"deploymentTransactionHash": {},
"deployedAt": {},
"auditUrls": [
"<string>"
]
}
]Partners — Start Here
Partner Chains
GET
/
partner
/
v1
/
chains
List active AKKA execution chains
curl --request GET \
--url https://api.akka.finance/partner/v1/chains \
--header 'apikey: <api-key>'const options = {method: 'GET', headers: {apikey: '<api-key>'}};
fetch('https://api.akka.finance/partner/v1/chains', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.akka.finance/partner/v1/chains"
headers = {"apikey": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)[
{
"chainId": 123,
"name": "<string>",
"nativeSymbol": "<string>",
"nativeDecimals": 123,
"wrappedNative": {},
"routerAddress": "<string>",
"contractVersion": "<string>",
"operationalStatus": "ACTIVE",
"explorerUrl": {},
"routerCodeHash": {},
"deploymentBlock": {},
"deploymentTransactionHash": {},
"deployedAt": {},
"auditUrls": [
"<string>"
]
}
]Returns only active chains with a deployed AKKA Router. Integrators should refresh this endpoint rather than treating documentation tables as a runtime registry.
Authorizations
API key. basic-test-key is a shared, rate-limited evaluation credential; use a dedicated key in production.
Response
200 - application/json
Available options:
ACTIVE, DEGRADED, DISABLED 