---
title: "List Suppliers"
method: GET
path: "/api/v1/admin/suppliers/"
tags: ["admin-suppliers"]
---

# List Suppliers

`GET /api/v1/admin/suppliers/`

List suppliers (paginated).

Requires ``vendors:manage`` permission.

The ``active`` query param is tri-state:

* ``?active=true`` (default) — active rows only
* ``?active=false`` — inactive rows only
* omit the param (or send ``?active=`` with explicit null) — all rows

## Query parameters

- `q` string, nullable — Search name / email / company (case-insensitive ilike)
- `active` boolean, nullable — Three-state filter: true → active only, false → inactive only, omit param → all rows.
- `sort` 'name' | 'last_contacted_at' | 'created_at' — Sort column
- `order` 'asc' | 'desc' — Sort direction
- `offset` integer
- `limit` integer

## Response `200`

Successful Response

- PaginatedResponseSupplierContactListItem
  - `items` SupplierContactListItem[], required
    - `id` string, uuid, required
    - `name` string, required
    - `email` string, required
    - `company` string, nullable, required
    - `location` string, nullable, required
    - `active` boolean, required
    - `trust_tier` 'new' | 'trusted' | 'restricted', required
    - `capability_summary` string[], required
    - `last_contacted_at` string, date-time, nullable, required
    - `response_count` integer, required
    - `decline_count` integer, required
  - `total` integer, required
  - `offset` integer, required
  - `limit` integer, required
  - `has_more` boolean, required

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/prototyping/apis/prototyping-io-api.md) · [All operations](https://skmtc.dev/prototyping/apis/prototyping-io-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/prototyping/prototyping-io-api/revisions/f4a0079fbb57/schema)
