v1

latestOpenAPI 3.0.32026-07-2639188178.2 KB
dapps

Get list of DApps

This endpoint returns list of DApps by using different parameters.

NOTE: Consider all IDs as abstract strings, without making any assumptions about their format or relying on such assumptions. There is a non-zero probability that IDs may change in the future, and this should not result in any breaking changes.

get/v1/dapps

Query parameters

afterstring nullable

This field is used for result pagination. You SHOULD NOT use this parameter directly. To get the next page of the results you should use links.next field. Omit it to return the first page.

sizeinteger

Set maximum number of items per a page in the pagination.

Pagination parameters

Response

Response for requested list of DApps

Example response

{
  "data": [
    {
      "type": "dapps",
      "attributes": {
        "name": "AAVE V3",
        "description": "Earn interest, borrow assets, and build applications.",
        "icon": {
          "url": "https://token-icons.s3.amazonaws.com/0x0391d2021f89dc339f60fff84546ea23e337750f.png"
        },
        "url": "https://aave.com/",
        "manage_positions_url": "https://app.aave.com/",
        "external_links": [
          {
            "type": "website",
            "name": "Website",
            "url": "https://www.indexcoop.com"
          }
        ]
      }
    }
  ]
}