---
title: "Retrieve all product books for the company"
method: GET
path: "/v2/product_book"
tags: ["Product Book"]
---

# Retrieve all product books for the company

`GET /v2/product_book`

Retrieves all product books for the authenticated company. Able to search by keywords in name or description.

## Query parameters

- `order_by` '-created_at' | 'created_at' | '-name' | 'name'
- `keywords` string
- `limit` integer
- `starting_after` string
- `ending_before` string

## Response `200`

Retrieves all product books for the authenticated company. Able to search by keywords in name or description.

- object
  - `data` object, required
    - `has_more` boolean
    - `items` object[]
      - `created_at` integer, required — Immutable Unix timestamp in milliseconds taken at time of creation
      - `key` string, required — A unique identifier used to reference the object
      - `updated_at` integer, required — Unix timestamp in milliseconds taken at time of last update
      - `archived` boolean, required
      - `company_id` integer, required — The ID of the company that owns this product book
      - `description` string, nullable — Description of the product book
      - `external_key` string, nullable — External billing ID for the product (e.g., Stripe, Chargebee)
      - `id` integer, nullable
      - `name` string, required — The name of the product book
    - `total` integer, nullable
  - `message` string, required
  - `status` integer, required

## Other responses

- `400` — Bad Request Error
- `401` — Unauthorized Error
- `403` — Forbidden Error
- `404` — Not Found Error
- `500` — Internal Server Error

---

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