## gumtree/product

`GET /v1/gumtree/product`

One listing's page: description, price, category path, location, attributes, images, the seller's profile and the seller ids the seller routes take.

*Gumtree listing*

| Parameter | Required | Description |
| --- | --- | --- |
| `id` | yes | Ad id (or pass url, the listing's page) — e.g. `1513645531` |
| `url` | no | The listing's page URL instead of an id |
| `dry_run` | no | Read a zero-credit estimate without fetching sources, running AI, or reserving credits. Cache status is a snapshot, not a guarantee at execution. — e.g. `1` |

**Cost:** 2 credits at list price per successful uncached response; variable-cost operations may quote or settle a different charge. Confirmed uncharged or refunded failures report zero. Pending reconciliation can report credits_used:null; retain request_id and the original idempotency key.

```bash
curl "https://www.monocrawl.com/v1/gumtree/product?id=1513645531" \
  -H "x-api-key: mn_your_key_here"
```

### Response data

Illustrative abbreviated data; documented core fields are optional and may be null. Additional source fields are allowed.

```json
{
  "age_days": 0,
  "attributes": [
    {
      "label": "example",
      "value": "example"
    }
  ],
  "category": "example",
  "category_id": "example",
  "category_path": [
    "example"
  ],
  "contact": {
    "has_email": false,
    "has_phone": false,
    "has_website": false
  },
  "currency": "example",
  "description": "example",
  "id": "example",
  "images": [
    "example"
  ],
  "images_count": 0,
  "location": {
    "approximate": false,
    "id": "example",
    "latitude": 0,
    "longitude": 0,
    "name": "example"
  },
  "map_image_url": "https://example.com/example",
  "platform": "example",
  "posted": "example",
  "price": 0,
  "price_label": "example",
  "price_pence": 0,
  "seller": {
    "active_status": "example",
    "identity_verified": false,
    "platform": "example",
    "rating": {
      "max": 0,
      "value": 0,
      "votes": 0
    },
    "type": "example",
    "user_id": "example"
  },
  "title": "example",
  "trade_seller": false,
  "type": "example",
  "url": "https://example.com/example"
}
```

[Field reference](https://www.monocrawl.com/docs/endpoints/gumtree/product#response) · [JSON Schema for response.data](https://www.monocrawl.com/schemas/gumtree/product.json)
