Skip to main content

Supported products

Use the CRM price books API to retrieve price book and price book item records using standard CRM object patterns, including list, individual read, batch read, and search. This API is read-only. To create, update, activate, or delete price books and their items, use the price books API.

Retrieve price books

You can retrieve price book records individually, as a list, or in batches. Use the following optional query parameters in list and individual read requests:

Retrieve all price books

To retrieve a list of all price books, make a GET request to /crm/objects/2026-09-beta/price_books. By default, the endpoint returns up to 10 records per page. Use the limit query parameter to adjust the page size, and the after parameter (from the previous response’s paging.next.after field) to retrieve the next page.
To retrieve specific properties, include a properties query parameter in the request URL with a comma-separated list of property names. To view all available price book properties, use the properties API.

Retrieve an individual price book

To retrieve a single price book by its record ID, make a GET request to /crm/objects/2026-09-beta/price_books/{objectId}.
The record ID (id) returned here matches the id returned by the price books API when creating or retrieving price books via the commerce endpoints.

Retrieve a batch of price books

To retrieve multiple price books in a single request, make a POST request to /crm/objects/2026-09-beta/price_books/batch/read.
Please note: the batch read endpoint cannot retrieve associations. To retrieve associations for a specific set of price books, first retrieve their id values, then use the associations API.
In the request body, include an inputs array of record IDs and a properties array specifying which properties to return:

Retrieve price book items

Price book items (the products configured within a price book) are also accessible as CRM objects. You can retrieve them using the same list, individual read, batch read, and search patterns, substituting price_book_items as the objectType.

Retrieve all price book items

To retrieve a list of all price book items, make a GET request to /crm/objects/2026-09-beta/price_book_items.

Retrieve an individual price book item

To retrieve a single price book item by its record ID, make a GET request to /crm/objects/2026-09-beta/price_book_items/{objectId}. The record ID matches the id returned by the price book items endpoints in the commerce API.

Retrieve a batch of price book items

To retrieve multiple price book items in a single request, make a POST request to /crm/objects/2026-09-beta/price_book_items/batch/read.

Search price books and items

Use the search endpoint to retrieve price books or price book items that match a set of filter criteria. Make a POST request to /crm/objects/2026-09-beta/price_books/search (or /crm/objects/2026-09-beta/price_book_items/search for items). In the request body, include a filterGroups array to define your search criteria, a properties array to specify which fields to return, and optional sorts and limit parameters. For example, to search for price books modified after a specific date:
Learn more about searching the CRM including available filter operators.
Last modified on July 31, 2026