Hercle
REST
GET/api/v1/pairs/networks/{asset}

Get Asset Networks

Retrieve the supported networks for a given asset.

Auth:Bearer <api_key>
Tags:Pairs

Request

cURL
curl -G https://publicapi.sandbox.hercle.financial/api/v1/pairs/networks/{asset} \
  -H "Authorization: Bearer eyJhb..." \
  

Path Parameters

NameTypeRequiredDescription
assetstringYesThe asset symbol to retrieve networks for
Example: BTC

Headers

NameTypeRequiredDescription
AuthorizationstringYesBearer token for authentication

Response

Success Response Schema

FieldTypeDescription
[items]array of stringNetwork name (e.g., Bitcoin, Ethereum)

Responses

List of supported networks for the specified asset

200 application/json
[
  "Bitcoin",
  "Ethereum",
  "Litecoin"
]

API Tester

Test this endpoint directly against the sandbox environment

Get your API key from Hercle Sandbox

The asset symbol to retrieve networks for

https://publicapi.sandbox.hercle.financial/api/v1/pairs/networks/{asset}