Networks & Assets

List all networks

get

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
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"
  }
}

List assets

get

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
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