Chains

Get a list of supported chains

Get list of supported chains

Get list of supported chains

GEThttps://api.sandbox.horizonland.app/v1/chains
Response

OK

Body
result*array of ChainDetail (object)

List of supported chains

Request
const response = await fetch('https://api.sandbox.horizonland.app/v1/chains', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "result": [
    {
      "id": "text",
      "name": "text",
      "symbol": "text"
    }
  ]
}

Last updated