## google_places/listing

`GET /v1/google_places/listing`

A business's Google listing: categories, description, hours, attributes, rating, contact details and images.

*Google business listing*

| Parameter | Required | Description |
| --- | --- | --- |
| `query` | yes | Business name, optionally with a place — e.g. `Dishoom Shoreditch` |
| `location` | no | Location name — e.g. `London,England,United Kingdom` |
| `language` | no | Language code — e.g. `en` |
| `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:** 4 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/google_places/listing?query=Dishoom%20Shoreditch" \
  -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
{
  "address": "example",
  "attributes": {
    "available_attributes": {
      "accessibility": [
        "example"
      ],
      "amenities": [
        "example"
      ],
      "atmosphere": [
        "example"
      ],
      "children": [
        "example"
      ],
      "crowd": [
        "example"
      ],
      "dining_options": [
        "example"
      ],
      "highlights": [
        "example"
      ],
      "offerings": [
        "example"
      ],
      "parking": [
        "example"
      ],
      "payments": [
        "example"
      ],
      "pets": [
        "example"
      ],
      "planning": [
        "example"
      ],
      "popular_for": [
        "example"
      ],
      "service_options": [
        "example"
      ]
    },
    "unavailable_attributes": {
      "accessibility": [
        "example"
      ]
    }
  },
  "categories": [
    "example"
  ],
  "category": "example",
  "cid": "example",
  "description": "example",
  "domain": "example",
  "hours": {
    "current_status": "example",
    "timetable": {
      "friday": [
        {}
      ],
      "monday": [
        {}
      ],
      "saturday": [
        {}
      ],
      "sunday": [
        {}
      ],
      "thursday": [
        {}
      ],
      "tuesday": [
        {}
      ],
      "wednesday": [
        {}
      ]
    }
  },
  "is_claimed": false,
  "latitude": 0,
  "logo": "example",
  "longitude": 0,
  "main_image": "https://example.com/example",
  "name": "example",
  "open_now": "example",
  "phone": "example",
  "place_id": "example",
  "platform": "example",
  "rating": {
    "max": 0,
    "value": 0,
    "votes": 0
  },
  "url": "https://example.com/example"
}
```

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