## gumtree/search

`GET /v1/gumtree/search`

One page of Gumtree UK listings for a keyword: title, price, location, age, seller flags and URL.

*Gumtree search*

| Parameter | Required | Description |
| --- | --- | --- |
| `query` | yes | Search keyword — e.g. `laptop` |
| `category` | no | Category slug — e.g. `laptops` |
| `location` | no | Location slug — e.g. `london` |
| `page` | no | Page number — e.g. `1` |
| `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:** 5 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/search?query=laptop" \
  -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
{
  "category": "example",
  "count": 0,
  "cursor": null,
  "has_more": false,
  "items": [
    {
      "age_days": 0,
      "category_id": "example",
      "currency": "example",
      "delivery": false,
      "featured": false,
      "has_video": false,
      "id": "example",
      "id_verified": false,
      "images": 0,
      "location": "example",
      "platform": "example",
      "position": 0,
      "price": 0,
      "price_pence": 0,
      "title": "example",
      "trade_seller": false,
      "type": "example",
      "url": "https://example.com/example"
    }
  ],
  "location": "example",
  "page": 0,
  "query": "example",
  "scraped_at": "2026-09-01T12:00:00Z",
  "total": 0
}
```

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