Networks & Assets
This endpoint retrieves a list of all available networks.
The provider to filter networks by
The type of networks to filter by
The network IDs to filter by
Cursor for pagination. Use the next cursor from previous response to get next page
Number of records to return per page
Field to order results by
Set to "true" or "1" for descending order
The networks were successfully retrieved.
Invalid request parameters
Authentication is required
Insufficient permissions
Resource not found
Resource conflict
Unable to process the contained instructions
Internal server error
Bad gateway
GET /v1/provider/networks HTTP/1.1
Host: auth.armory.playnarval.com
x-client-id: text
Accept: */*
{
"data": [
{
"networkId": "text",
"coinType": 1,
"evmChainId": 1,
"name": "text",
"externalNetworks": [
{
"externalId": "text",
"provider": "anchorage",
"supportsStake": false,
"supportsEvm": false,
"supportsTransfer": false,
"customStakingValidator": false
}
],
"createdAt": null
}
],
"page": {
"next": "text"
}
}
Returns a list of assets for the specified provider.
Cursor for pagination. Use the next cursor from previous response to get next page
Number of records to return per page
Field to order results by
Set to "true" or "1" for descending order
The provider to filter assets by
Returns a paginated list of assets for the specified provider
Invalid request parameters
Authentication is required
Insufficient permissions
Resource not found
Resource conflict
Unable to process the contained instructions
Internal server error
Bad gateway
GET /v1/provider/assets HTTP/1.1
Host: auth.armory.playnarval.com
x-client-id: text
Accept: */*
{
"data": [
{
"assetId": "text",
"createdAt": null,
"decimals": 1,
"externalAssets": [
{
"externalId": "text",
"provider": "anchorage"
}
],
"name": "text",
"networkId": "text",
"onchainId": "text",
"symbol": "text"
}
],
"page": {
"next": "text"
}
}
Last updated