GET
/
api
/
v1
/
nontokenized
curl --request GET \
  --url https://api.enso.finance/api/v1/nontokenized \
  --header 'Authorization: Bearer <token>'
{
  "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>"
          ]
        }
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

project
string

The overarching project or platform associated with the DeFi token

Example:

"beradrome"

protocolSlug
string

The specific standard integration or version of the DeFi project

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
meta
object
required

Metadata for pagination

data
object[]

Returned data for current page