---
title: "Product / Content ID List API"
method: GET
path: "/v1/products/_ids"
tags: ["Product / Content APIs"]
---

# Product / Content ID List API

`GET /v1/products/_ids`

This API endpoint allows you to fetch the unique identifiers (product_ids) of all products
stored in the app. To get a list of product_ids, make a GET request to the following URL:

```
GET /v1/products/_ids
```

## Response Format

The API will return an array of product_ids in a JSON object. The `status_code` will be `200`
if the request is successful. If any error occurs during the request, the `status_code` will
not be `200` and the `message` field will indicate the error.

### Example Successful Response

```json
{
  "message": "success",
  "data": {
    "ids": [
      "product_1",
      "product_2",
      "product_3",
      // ... more product_ids
    ]
  }
}
```

### Example Error Response

If the dataset cannot be found, the API will return a `404` error:

```json
{
  "status_code": 404,
  "message": "not found"
}
```

If another error occurs during the request, the API will return a `500` error

```json
{
  "message": "Something went wrong. Please contact miso product team."
}
```

## Response `200`

Successful Response

- ProductListOut
  - `message` string, required
  - `data` ProductIds, required
    - `ids` string[], required

## Other responses

- `401` — Unauthorized
- `500` — Internal Server Error

---

[API](https://skmtc.dev/askmiso/apis/miso-api.md) · [All operations](https://skmtc.dev/askmiso/apis/miso-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/askmiso/miso-api/revisions/f2fa5ba6025f/schema)
