# Get product page

Fetch a canonical public IndiaMART product page URL and normalize JSON-LD and page metadata.

- Platform: [IndiaMART Directory](https://docs.upscrape.com/docs/platforms/indiamart)
- Capability ID: `indiamart.product.get`
- Cost: 1 credit per request
- Maximum runtime: 60 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": {
    "url": "https://www.indiamart.com/sahajanandlaser/laser-marking-machine.html"
  },
  "capability": "indiamart.product.get"
}'
```

## Input

| Field | Type | Required | Description |
| --- | --- | --- | --- |
| `url` | `string` | Yes | Canonical public IndiaMART product-page URL, not a directory listing artifact. |

### Example input

```json
{
  "url": "https://www.indiamart.com/sahajanandlaser/laser-marking-machine.html"
}
```

## 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
{
  "name": "Laser Marking Machine - Fiber Laser Marking Machine - Rex Manufacturer from Gandhinagar",
  "raw_title": "Laser Marking Machine - Fiber Laser Marking Machine - Rex Manufacturer from Gandhinagar",
  "url": "https://www.indiamart.com/sahajanandlaser/laser-marking-machine.html"
}
```
### Illustrative output fields

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

| Path | Observed type | Example |
| --- | --- | --- |
| `name` | `string` | Laser Marking Machine - Fiber Laser Marking Machine - Rex Manufacturer … |
| `raw_title` | `string` | Laser Marking Machine - Fiber Laser Marking Machine - Rex Manufacturer … |
| `url` | `string` | https://www.indiamart.com/sahajanandlaser/laser-marking-machine.html |

## 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)
