---
title: "Retrieve a list of deeplinks"
method: GET
path: "/api/v1/deeplinks"
tags: ["Deeplinks"]
---

# Retrieve a list of deeplinks

`GET /api/v1/deeplinks`

Required scope: `deeplinks:read` </br>Organization authorization: `supported`

## Query parameters

- `page` integer
- `perPage` integer
- `operatorId` integer, nullable — Allows filtering deeplinks by `operatorId`.</br>*Note:*The operatorId must be in the consumer’s operatorIds or, if empty, belong to the organization’s sub-operators.
- `fromCreatedAt` string, date, nullable — Filter to retrieve deeplinks where `createdAt` >= `fromCreatedAt` (ISO8601: yyyy-MM-dd)
- `fromUpdatedAt` string, date, nullable — Filter to retrieve deeplinks where `updatedAt` >= `fromUpdatedAt` (ISO8601: yyyy-MM-dd)

## Response `200`

List of deeplinks that match the criteria

- OffsetBasedResponse34
  - `data` DeeplinkDto[], required
    - `id` integer — Unique identifier of the deeplink
    - `destinationType` 'link' | 'resource', required
    - `destination` union
      - object
        - `url` string, nullable — URL of the link
      - object
        - `resourceType` 'charge-point', nullable — Type of the resource
        - `resourceId` integer, nullable — ID of the resource
    - `comment` string, nullable — Optional comment for the deeplink
    - `visits` integer — Number of visits to this deeplink
    - `operatorId` integer — ID of the operator who created the deeplink
    - `qrCodeUrl` string, nullable — URL to the QR code image
    - `appUrl` string, nullable — Optional URL for the mobile app
    - `createdAt` string, required — Creation timestamp
    - `updatedAt` string, required — Last update timestamp
    - `deletedAt` string, nullable — Deletion timestamp, if deleted
  - `meta` MontaPageMeta, required
    - `itemCount` integer, required
    - `currentPage` integer, required
    - `perPage` integer, required
    - `totalPageCount` integer, required
    - `totalItemCount` integer, required

## Other responses

- `400` — The request is invalid
- `401` — Consumer with provided credentials was not found
- `403` — Operator doesn't have access to resource
- `404` — Entity with the provided id was not found

---

[API](https://skmtc.net/monta/apis/monta-partner-api.md) · [All operations](https://skmtc.net/monta/apis/monta-partner-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/monta/monta-partner-api/versions/517e18f11015/schema)
