---
title: List products
description: Paginated list of products (max 100/page), sorted by createdAt desc. Filter by category, status (active/archived), or free-text search across name + model.
canonical: "https://www.tracepass.eu/docs/list-products"
locale: en
source: "https://www.tracepass.eu/docs/list-products"
---

# List products

> Paginated list of products (max 100/page), sorted by createdAt desc. Filter by category, status (active/archived), or free-text search across name + model.

```http
GET /api/v1/products
```

Paginated list of every product the workspace owns, sorted by `createdAt` descending. Page size capped at 100. Filter by category slug, status (`active` / `archived`), or a free-text search across name + model.

Counts as one v1 read against `maxV1PassportsPerDay` (the read-side budget — same counter as the passport list endpoint). Reads aren't counted against the write budget.

## 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. |
| `category` | query | string | no | Filter by category slug. |
| `status` | query | string | no | `active` or `archived`. |
| `search` | query | string | no | Free-text search across name and model. |

## Examples

```bash
curl -sS \
  "https://app.tracepass.eu/api/v1/products?category=batteries&page=1&limit=20" \
  -H "Authorization: Bearer tp_REDACTED_xxxxxxxxxxxx"
```

```typescript
const url = new URL("https://app.tracepass.eu/api/v1/products");
url.searchParams.set("category", "batteries");
url.searchParams.set("limit", "20");

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/products",
    headers={"Authorization": f"Bearer {os.environ['TRACEPASS_API_KEY']}"},
    params={"category": "batteries", "limit": 20},
)
res.raise_for_status()
data = res.json()["data"]
```

## Responses

### 200 — OK

```json
{
  "data": {
    "items": [
      {
        "_id": "6650a1b2c3d4e5f6a7b8c9d0",
        "name": "Li-Ion 48V Battery Pack",
        "model": "BP-48V-100",
        "category": "batteries",
        "passportCount": 12,
        "status": "active",
        "createdAt": "2026-04-10T14:30:00.000Z"
      }
    ],
    "total": 1,
    "page": 1,
    "limit": 20,
    "totalPages": 1
  }
}
```

## Related

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