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

# List Product Listings

> List the products your app has published to its sales channel

Returns the products your app has published to its
[sales channel](/api-reference/sales-channels/create). Your app must have
created a sales channel first — this endpoint resolves the channel from your
app identity, and returns `404` if none exists yet.

**Auth:** OAuth access token with the `read_products` scope.

<Note>
  Create a [sales channel](/api-reference/sales-channels/create) before calling
  this endpoint. Without one you get
  `404 { message: "Sales channel not found for this app" }`.
</Note>

## Query Parameters

<ParamField query="limit" type="integer" default="50">
  Results per page. Clamped to `1`–`250`.
</ParamField>

<ParamField query="page" type="integer" default="1">
  Page number.
</ParamField>

<ParamField query="status" type="string">
  Filter by listing status.
</ParamField>

## Response

```json theme={null}
{
  "product_listings": [
    {
      "id": "d290f1ee-6c54-4b01-90e6-d701748f0851",
      "product_id": "a1b2c3d4-5e6f-7890-abcd-ef1234567890",
      "external_id": null,
      "status": "active"
    }
  ]
}
```
