Networks & Assets
This endpoint retrieves a list of all available networks.
Query parameters
providerstringOptional
The provider to filter networks by
typestringOptional
The type of networks to filter by
networkIdsstring[]Optional
The network IDs to filter by
cursorstringOptional
Cursor for pagination. Use the next cursor from previous response to get next page
limitnumberOptional
Number of records to return per page
orderBystringOptional
Field to order results by
descstringOptional
Set to "true" or "1" for descending order
Header parameters
x-client-idstringRequired
Responses
200
The networks were successfully retrieved.
application/json
400
Invalid request parameters
application/json
401
Authentication is required
application/json
403
Insufficient permissions
application/json
404
Resource not found
application/json
409
Resource conflict
application/json
422
Unable to process the contained instructions
application/json
500
Internal server error
application/json
502
Bad gateway
application/json
get
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.
Query parameters
cursorstringOptional
Cursor for pagination. Use the next cursor from previous response to get next page
limitnumberOptional
Number of records to return per page
orderBystringOptional
Field to order results by
descstringOptional
Set to "true" or "1" for descending order
providerstringOptional
The provider to filter assets by
Header parameters
x-client-idstringRequired
Responses
200
Returns a paginated list of assets for the specified provider
application/json
400
Invalid request parameters
application/json
401
Authentication is required
application/json
403
Insufficient permissions
application/json
404
Resource not found
application/json
409
Resource conflict
application/json
422
Unable to process the contained instructions
application/json
500
Internal server error
application/json
502
Bad gateway
application/json
get
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