---
title: Produkte auflisten
description: Paginierte Produktliste (max 100/Seite), sortiert nach createdAt desc. Filter nach Kategorie, Status (active/archived) oder Freitext über Name + Modell.
canonical: "https://www.tracepass.eu/de/docs/list-products"
locale: de
source: "https://www.tracepass.eu/de/docs/list-products"
---

# Produkte auflisten

> Paginierte Produktliste (max 100/Seite), sortiert nach createdAt desc. Filter nach Kategorie, Status (active/archived) oder Freitext über Name + Modell.

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

Paginierte Liste aller Produkte des Workspaces, absteigend nach `createdAt` sortiert. Seitengröße max. 100. Filter nach Kategorie-Slug, Status (`active` / `archived`) oder Freitextsuche über name + model.

Zählt als ein v1-Lesevorgang gegen `maxV1PassportsPerDay` — derselbe Zähler wie die Passport-Listen-Endpoint.

## Parameters

| Name | In | Type | Required | Description |
| --- | --- | --- | --- | --- |
| `Authorization` | header | string | yes | `Bearer <token>` — entweder ein `tp_` API-Schlüssel (Developer → API Keys; am einfachsten, für Server-zu-Server) oder ein OAuth-2.0-Access-Token (Developer → OAuth Apps; für nutzerautorisierte Apps, scoped und widerrufbar). Die Authentication-Seite enthält den vollständigen OAuth-Flow und die Scope-Liste. |
| `page` | query | number (default 1) | no | 1-basierte Seitennummer. |
| `limit` | query | number (1-100, default 20) | no | Elemente pro Seite. |
| `category` | query | string | no | Filter nach Kategorie-Slug. |
| `status` | query | string | no | `active` oder `archived`. |
| `search` | query | string | no | Freitextsuche. |

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

- [Produkt anlegen](https://www.tracepass.eu/de/docs/create-product.md)
- [Einzelnes Produkt lesen](https://www.tracepass.eu/de/docs/get-product.md)
