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
| Name | Type | Required | Description |
|---|---|---|---|
| asset | string | Yes | The asset symbol to retrieve networks for Example: BTC |
Headers
| Name | Type | Required | Description |
|---|---|---|---|
| Authorization | string | Yes | Bearer token for authentication |
Response
Success Response Schema
List of supported networks for the specified asset
| Field | Type | Description |
|---|---|---|
[items] | array of string | Network 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}