---
title: "List token allowlist"
method: GET
path: "/v1/issuance/tokens/{tokenId}/allowlist"
tags: ["Issuance"]
---

# List token allowlist

`GET /v1/issuance/tokens/{tokenId}/allowlist`

Lists allowlist entries for a token.

## Path parameters

- `tokenId` string, required — Token identifier.

## Query parameters

- `page` integer — Page number (1-based).
- `pageSize` integer — Number of items per page.
- `search` string — Contains-style search over the entry address and label. A blank value is treated as no search filter.
- `label` string — Filter to entries with this exact label (values come from the labels endpoint).

## Headers

- `x-project-id` string — Selects the active project for this request. Required for session/dashboard callers. Ignored when authenticating with an API key, whose scope is fixed to the key's project.

## Response `200`

Allowlist entries

- object — Standard paginated response envelope.
  - `data` object[], required
    - `id` string, required — Token allowlist entry identifier.
    - `tokenId` string, required — Token identifier.
    - `address` string, required — Allowlisted wallet address.
    - `label` string, nullable, required — Optional label for the address.
    - `status` 'active' | 'revoked', required — Allowlist entry status.
    - `addedBy` string, required — Actor identifier that added the entry.
    - `createdAt` string, date-time, required — Creation timestamp.
    - `revokedAt` string, date-time, nullable, required — Revocation timestamp, if revoked.
  - `meta` object, required — Pagination metadata.
    - `total` integer, required — Total items.
    - `page` integer, required — Current page number.
    - `pageSize` integer, required — Items per page.
    - `hasMore` boolean, required — Whether more pages exist.
    - `requestId` string, required — Request identifier for tracing.

## Other responses

- `400` — Error
- `401` — Error
- `403` — Error
- `404` — Error
- `500` — Error

---

[API](https://skmtc.net/solana/apis/solana-developer-platform-api.md) · [All operations](https://skmtc.net/solana/apis/solana-developer-platform-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/solana/solana-developer-platform-api/revisions/672b1916ba61/schema)
