> ## Documentation Index
> Fetch the complete documentation index at: https://docs.birdeye.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Product Listing List

> Get a paginated list of Google Merchant product listings linked to your account.

```
get_product_listing_list
```

## Description

Returns product listings from the Google Merchant account connected to your Birdeye account. Supports filtering by search term, publish status, and location.

## Parameters

| Parameter         | Type           | Required | Default | Description                                |
| ----------------- | -------------- | -------- | ------- | ------------------------------------------ |
| `search`          | string         | No       | —       | Search term to filter products by name     |
| `status`          | string         | No       | —       | Filter by status: `"DRAFT"` or `"PUBLISH"` |
| `businessNumbers` | list\[integer] | No       | All     | Scope to specific location IDs             |
| `pageSize`        | integer        | No       | `50`    | Number of results per page                 |
| `pageNumber`      | integer        | No       | `0`     | Page number (zero-indexed)                 |

## Example Usage

```
Show me all published product listings.
```

```
List draft products for my Downtown location.
```

## Response Fields

Each product includes:

| Field           | Description                                     |
| --------------- | ----------------------------------------------- |
| `productId`     | Unique product identifier                       |
| `title`         | Product name                                    |
| `description`   | Product description                             |
| `imageLink`     | URL of the product image                        |
| `price`         | Regular price                                   |
| `salePrice`     | Sale price (if applicable)                      |
| `status`        | `DRAFT` or `PUBLISH`                            |
| `sku`           | Stock keeping unit                              |
| `brand`         | Brand name                                      |
| `locationCount` | Number of locations this product is assigned to |

## Notes

* This tool only returns data if a Google Merchant account is connected in Birdeye.
* `businessNumbers` accepts location IDs from [`get_child_locations`](/mcp/tools/business/get-child-locations).
