---
title: List passports
description: Paginated list of passports. Filter by productId, status, or free-text search across GTIN + serial. Counts against the daily passport-read budget.
canonical: "https://www.tracepass.eu/docs/list-passports"
locale: en
source: "https://www.tracepass.eu/docs/list-passports"
---

# List passports

> Paginated list of passports. Filter by productId, status, or free-text search across GTIN + serial. Counts against the daily passport-read budget.

```http
GET /api/v1/passports
```

Paginated list of passports the workspace owns. Filter by `productId`, `status`, or a free-text search across GTIN and serial number. Counts against the daily passport-read budget (`maxV1PassportsPerDay`); the response items use the same shape as the single-read endpoint but trimmed to the listing fields.

## Parameters

| Name | In | Type | Required | Description |
| --- | --- | --- | --- | --- |
| `Authorization` | header | string | yes | `Bearer <token>` — either a `tp_` API key (Developer → API Keys; simplest, for server-to-server) or an OAuth 2.0 access token (Developer → OAuth Apps; for user-authorized apps, scoped + revocable). The Authentication page has the full OAuth flow and scope list. |
| `page` | query | number (default 1) | no | 1-based page number. |
| `limit` | query | number (1-100, default 20) | no | Items per page. |
| `productId` | query | ObjectId | no | Filter by product. |
| `status` | query | enum | no | `draft`, `in_review`, `approved`, `published`, `suspended`, `expired`, `archived`. |
| `search` | query | string | no | Free-text across GTIN + serial. |

## Examples

```bash
curl -sS \
  "https://app.tracepass.eu/api/v1/passports?status=published&limit=50" \
  -H "Authorization: Bearer tp_REDACTED_xxxxxxxxxxxx"
```

```typescript
const url = new URL("https://app.tracepass.eu/api/v1/passports");
url.searchParams.set("status", "published");
url.searchParams.set("limit", "50");

const res = await fetch(url, {
  headers: { Authorization: `Bearer ${process.env.TRACEPASS_API_KEY}` },
});
const { data } = await res.json();
```

```python
import os, requests
res = requests.get(
    "https://app.tracepass.eu/api/v1/passports",
    headers={"Authorization": f"Bearer {os.environ['TRACEPASS_API_KEY']}"},
    params={"status": "published", "limit": 50},
)
res.raise_for_status()
items = res.json()["data"]["items"]
```

## Responses

### 200 — OK

```json
{
  "data": {
    "items": [
      {
        "_id": "6650b2c3d4e5f6a7b8c9d0e1",
        "productId": "6650a1b2c3d4e5f6a7b8c9d0",
        "gs1": {
          "gtin": "04012345000016",
          "serialNumber": "BP-48V-100-000001",
          "digitalLinkUri": "https://id.tracepass.eu/p/01/04012345000016/21/BP-48V-100-000001"
        },
        "status": "published",
        "completionPercentage": 87,
        "publishedAt": "2026-04-11T10:00:00.000Z"
      }
    ],
    "total": 1,
    "page": 1,
    "limit": 50,
    "totalPages": 1
  }
}
```

## Related

- [Get a single passport](https://www.tracepass.eu/docs/get-passport.md)
- [Create a passport](https://www.tracepass.eu/docs/create-passport.md)
