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

# List Product Feeds

> List product feeds linked to the connected OpenAI Ads account, optionally with per-feed product counts

List product feeds linked to the connected OpenAI Ads account, optionally with per-feed product counts. Use the returned feed\_id for product-feed campaigns, product queries, and delta updates.

|                      |                                 |
| -------------------- | ------------------------------- |
| **App**              | OpenAI Ads                      |
| **Operation ID**     | `openai_ads_list_product_feeds` |
| **Type**             | Action                          |
| **Connection**       | `openai_ads` (required)         |
| **Credits per run**  | Free                            |
| **Agent / MCP tool** | Yes                             |

## Inputs

| Field                   | Type    | Required | Default | Description                                       |
| ----------------------- | ------- | -------- | ------- | ------------------------------------------------- |
| `include_product_count` | boolean | No       | -       | When true, each feed includes its product\_count. |
| `limit`                 | integer | No       | `100`   | Maximum number of feeds to return (1-1000).       |

## Output

**Type**: `List[Dict]`

Returns feed objects exactly as returned by the OpenAI Ads API (feed\_id, name, countries, currencies, campaign\_count, sftp\_configured, hosted\_url\_configured, created\_at, updated\_at; product\_count when requested).

**Fields**: dynamic (depend on the inputs)

**Example**:

```json theme={"dark"}
[
  {
    "feed_id": "acme_feed",
    "name": "Acme",
    "countries": [
      "US"
    ],
    "currencies": [
      "USD"
    ],
    "campaign_count": 1,
    "product_count": 120
  }
]
```
