# Home feed

Retrieve a page of the Meesho home feed.

- Platform: [Meesho Catalog](https://docs.upscrape.com/docs/platforms/meesho)
- Capability ID: `catalog.feed`
- Cost: 1 credit per request
- Maximum runtime: 45 seconds
- Execute endpoint: `POST https://data.upscrape.com/execute`

## Request

Use the exact public capability ID in the shared execute envelope.

```bash
curl --request POST \
  --url https://data.upscrape.com/execute \
  --header "Authorization: Bearer YOUR_API_KEY" \
  --header "Content-Type: application/json" \
  --header "Prefer: wait=30" \
  --data '{
  "input": {
    "limit": 20
  },
  "capability": "catalog.feed"
}'
```

## Input

| Field | Type | Required | Description |
| --- | --- | --- | --- |
| `cursor` | `string` | No |  |
| `limit` | `integer` | No |  |
| `offset` | `integer` | No |  |

### Example input

```json
{
  "limit": 20
}
```

## Response

Successful output is returned in `results[0].data`. Raw platform output is intentionally open-ended and may evolve with the upstream source.

### Illustrative sample output

This redacted fixture is an example, not a fixed response schema.

```json
{
  "count": 20,
  "listings": [
    {
      "catalog_id": 498592586,
      "images": [
        "https://images.meesho.com/images/products/962430292/6jayg_512.jpg"
      ],
      "min_price": 144,
      "name": "Herbal Oil",
      "product_id": "fx07ys",
      "product_url": "https://www.meesho.com/bajaj-almond-drops-hair-oil-190ml-6x-vitamin-e-nourishment-light-and-non-sticky-hair-oil-for-hair-fall-control/p/fx07ys",
      "slug": "bajaj-almond-drops-hair-oil-190ml-6x-vitamin-e-nourishment-light-and-non-sticky-hair-oil-for-hair-fall-control"
    },
    {
      "catalog_id": 184481748,
      "images": [
        "https://images.meesho.com/images/products/537915118/hrg8c_512.jpg"
      ],
      "min_price": 314,
      "name": "Nat Habit New Facewash & Scrubs",
      "product_id": "8w9dym",
      "product_url": "https://www.meesho.com/nat-habit-skin-brightening-for-women-men-de-tan-ubtan-100g/p/8w9dym",
      "slug": "nat-habit-skin-brightening-for-women-men-de-tan-ubtan-100g"
    },
    {
      "catalog_id": 535411347,
      "images": [
        "https://images.meesho.com/images/products/1024853828/hrh8r_512.jpg"
      ],
      "min_price": 257,
      "name": "Aishani Superior Kurtis",
      "product_id": "gy669w",
      "product_url": "https://www.meesho.com/s-s-coleection-graceful-kurtis-for-womens/p/gy669w",
      "slug": "s-s-coleection-graceful-kurtis-for-womens"
    }
  ],
  "next_cursor": "[redacted:token]=="
}
```
### Illustrative output fields

Derived from the sample above for orientation only. These fields are not a fixed response schema.

| Path | Observed type | Example |
| --- | --- | --- |
| `count` | `integer` | 20 |
| `listings` | `array` | 3 items |
| `listings` | `array` | 3 items |
| `next_cursor` | `string` | [redacted:token]== |

## Execution behavior

A `200` response completed inline. A `202` response was queued; poll `GET /jobs/{id}` until the job reaches `completed` or `failed`. Use an `Idempotency-Key` when retrying must not create a duplicate logical job.

## Related documentation

- [Authentication](https://docs.upscrape.com/docs/api/authentication)
- [Jobs and results](https://docs.upscrape.com/docs/api/jobs)
- [Errors and retries](https://docs.upscrape.com/docs/api/errors)
- [Idempotency](https://docs.upscrape.com/docs/api/idempotency)
