---
title: "Find wallets within subscription"
method: GET
path: "/v1/tx-subscriptions/{subscription_id}/wallets"
tags: ["subscriptions to transactions"]
---

# Find wallets within subscription

`GET /v1/tx-subscriptions/{subscription_id}/wallets`

This endpoint by subscription ID returns wallets within specific subscription.

> 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.

## Path parameters

- `subscription_id` string, required

## 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 wallets within subscription

- Response23
  - `links` ResponseLinks20, required
    - `self` string, url, required
    - `next` string, url
  - `data` Container19, required
    - `type` string, required
    - `id` string, required — Unique ID
    - `attributes` Attributes17, required
      - `addresses` string[], required — Addresses of the wallets within subscription
    - `relationships` Relationships11, required
      - `subscription` PaginatedRelationship
        - `links` PaginatedRelationshipLinks, required
          - `self` string, url
          - `next` string, url
          - `related` string, url, required — URL to the current subscription
        - `data` RelationshipContainer, required
          - `type` string, required — Subscription resource type
          - `id` string, required — Subscription unique identifier

## 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)
