---
title: "GET /api/v0/manufacturers"
method: GET
path: "/api/v0/manufacturers"
tags: ["Basic"]
---

# GET /api/v0/manufacturers

`GET /api/v0/manufacturers`

Paginated list of all manufacturers.
Supports `search` and pagination query parameters.

If `search` is provided, only manufacturers that match the search term in a full-text search will be returned.

## Query parameters

- `#/components/schemas/ManufacturersQueryV0` ManufacturersQueryV0
  - `search` string — Search term
  - `cursor` string — Cursor for pagination. Must be a valid base64 string obtained from the pagination.nextCursor field of a previous response.
  - `limit` number — Limit for pagination

## Response `200`

Successful response

- ManufacturersResponseV0
  - `results` object[], required — The results on this page.
    - `id` string, required
    - `name` string, required
  - `pagination` object, required
    - `nextCursor` string, nullable, required — The cursor for getting the next page of results. If null, there are no more results.
    - `totalCount` number, required — The total number of results.
  - `requestId` string, required — The unique identifier for this request.

## Other responses

- `400` — Bad request
- `500` — Internal server error

---

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