---
title: "GET /pricelists"
method: GET
path: "/pricelists"
tags: ["PriceLists"]
---

# GET /pricelists

`GET /pricelists`

Returns a paginated collection of `Price List` objects from BigCommerce.

## Query parameters

- `id` integer
- `name` string
- `date_created` string, date-time
- `date_modified` string, date-time
- `page` integer
- `limit` integer

## Response `200`

An array of Price Lists and metadata.

- PriceListCollectionResponse — Response payload for the BigCommerce API.
  - `data` PriceList[]
    - `id` integer — The unique numeric ID of the `Price List`; increments sequentially.
    - `date_created` string, date-time — The date on which the `Price List` was created.
    - `date_modified` string, date-time — The date on which the `Price List` was created.
    - `name` string — The unique name of the Price List.
    - `active` boolean — Whether or not this `Price List` and its prices are active. Defaults to `true`.
  - `meta` CollectionMeta — Data about the response, including pagination and collection totals.
    - `pagination` Pagination — Data about the response, including pagination and collection totals.
      - `total` integer — Total number of items in the result set.
      - `count` integer — Total number of items in the collection response.
      - `per_page` integer — The amount of items returned in the collection per page, controlled by the limit parameter.
      - `current_page` integer — The page you are currently on within the collection.
      - `total_pages` integer — The total number of pages in the collection.
      - `links` object — Pagination links for the previous and next parts of the whole collection.
        - `previous` string — Link to the previous page returned in the response.
        - `current` string — Link to the current page returned in the response.
        - `next` string — Link to the next page returned in the response.

---

[API](https://skmtc.net/bigcommerce/apis/bigcommerce-api.md) · [All operations](https://skmtc.net/bigcommerce/apis/bigcommerce-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/bigcommerce/bigcommerce-api/versions/90efb67b99f3/schema)
