---
title: "Get list of DApps"
method: GET
path: "/v1/dapps"
tags: ["dapps"]
---

# Get list of DApps

`GET /v1/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.

## Query parameters

- `page` object
  - `after` string, 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.
  - `size` integer — Set maximum number of items per a page in the pagination.

## Response `200`

Response for requested list of DApps

- Response18
  - `links` ResponseLinks19, required
    - `self` string, required — Link to the current response
  - `data` Container16[], required
    - `type` string, required — DApps resource type.
    - `id` string, required — Unique identifier of the DApp.
    - `attributes` Attributes14 — Represents attributes of a decentralized application (DApp) corresponding to JSON API specification.
      - `name` string — The name of the decentralized application.
      - `description` string — A brief summary or details about the decentralized application.
      - `icon` object — Icon related to object.
        - `url` string, url, nullable — URL of the icon.
      - `url` string, url — Link to the DApp
      - `manage_positions_url` string, url — A link to the page for managing application positions or configurations.
      - `external_links` ExternalLink[] — A list of relevant URLs.
        - `type` string — Type of the link
        - `name` string — Displayable name of the link
        - `url` string, url, required — Link to the external resource

## Other responses

- `400` — Parameters are malformed
- `401` — Unathenticated request
- `429` — Too many requests error

---

[API](https://skmtc.dev/zerion/apis/rest-api.md) · [All operations](https://skmtc.dev/zerion/apis/rest-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/zerion/rest-api/revisions/2ef116ef914f/schema)
