GET
/
api
/
v1
/
nontokenized
curl --request GET \
  --url https://api.enso.finance/api/v1/nontokenized
{
  "meta": {
    "total": 123,
    "lastPage": 123,
    "currentPage": 123,
    "perPage": 123,
    "prev": 123,
    "next": 123,
    "cursor": 123
  },
  "data": [
    {
      "chainId": 123,
      "protocol": "<string>",
      "address": "<string>",
      "primaryAddress": "<string>",
      "underlyingTokens": [
        {
          "address": "<string>",
          "chainId": 123,
          "type": "<string>",
          "decimals": 123,
          "symbol": "<string>",
          "name": "<string>",
          "logosUri": [
            "<string>"
          ]
        }
      ]
    }
  ]
}

Query Parameters

project
string

The overarching project or platform associated with the DeFi token, for example aave

Example:

"beradrome"

protocolSlug
string

The specific standard integration or version of the DeFi project, for example aave-v2

Example:

"beradrome-farms"

chainId
number

Chain ID of the network of the nontokenized position

Example:

80094

address
string[]

Ethereum addresses of the nontokenized positions

primaryAddress
string[]

Ethereum addresses for contract interaction of nontokenized position

page
number

Pagination page number. Pages are of length 1000

cursor
number

Cursor for pagination. Pages are of length 1000

Response

200 - application/json

The response is of type object.