# Google Maps Coffee Shop Data for Dallas, TX

**Use case:** 

List every coffee shop matching a Dallas search as a 25-field row with name, address, phone, hours, rating and category data.

## Input

```json
{
  "max_results": 50,
  "keyword": "coffee shop",
  "location": "Dallas, Texas",
  "language": "English"
}
```

## Output

```json
{
  "thumbnail": {
    "label": "Thumbnail",
    "format": "string"
  },
  "name": {
    "label": "Name",
    "format": "string"
  },
  "local_name": {
    "label": "Local Name",
    "format": "string"
  },
  "category": {
    "label": "Category",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "review_count": {
    "label": "Review Count",
    "format": "integer"
  },
  "photo_count": {
    "label": "Photo Count",
    "format": "integer"
  },
  "hotel_class": {
    "label": "Hotel Class",
    "format": "integer"
  },
  "hotel_amenities": {
    "label": "Hotel Amenities",
    "format": "array"
  },
  "address": {
    "label": "Address",
    "format": "string"
  },
  "street": {
    "label": "Street",
    "format": "string"
  },
  "city": {
    "label": "City",
    "format": "string"
  },
  "locality": {
    "label": "Locality",
    "format": "string"
  },
  "region": {
    "label": "Region",
    "format": "string"
  },
  "postal_code": {
    "label": "Postal Code",
    "format": "string"
  },
  "country": {
    "label": "Country",
    "format": "string"
  },
  "phone": {
    "label": "Phone",
    "format": "string"
  },
  "phone_intl": {
    "label": "Phone Intl",
    "format": "string"
  },
  "website": {
    "label": "Website",
    "format": "string"
  },
  "opening_hours": {
    "label": "Opening Hours",
    "format": "array"
  },
  "service_hours": {
    "label": "Service Hours",
    "format": "array"
  },
  "open_status": {
    "label": "Open Status",
    "format": "string"
  },
  "attributes": {
    "label": "Attributes",
    "format": "array"
  },
  "highlights": {
    "label": "Highlights",
    "format": "array"
  },
  "departments": {
    "label": "Departments",
    "format": "array"
  },
  "description": {
    "label": "Description",
    "format": "string"
  },
  "business_description": {
    "label": "Business Description",
    "format": "string"
  },
  "categories": {
    "label": "Categories",
    "format": "array"
  },
  "area": {
    "label": "Area",
    "format": "string"
  },
  "latitude": {
    "label": "Latitude",
    "format": "number"
  },
  "longitude": {
    "label": "Longitude",
    "format": "number"
  },
  "entrance_latitude": {
    "label": "Entrance Latitude",
    "format": "number"
  },
  "entrance_longitude": {
    "label": "Entrance Longitude",
    "format": "number"
  },
  "timezone": {
    "label": "Timezone",
    "format": "string"
  },
  "name_language": {
    "label": "Name Language",
    "format": "string"
  },
  "local_language": {
    "label": "Local Language",
    "format": "string"
  },
  "display_language": {
    "label": "Display Language",
    "format": "string"
  },
  "place_id": {
    "label": "Place ID",
    "format": "string"
  },
  "data_id": {
    "label": "Data ID",
    "format": "string"
  },
  "entity_id": {
    "label": "Entity ID",
    "format": "string"
  },
  "platform": {
    "label": "Platform",
    "format": "string"
  },
  "processor": {
    "label": "Processor",
    "format": "string"
  },
  "processed_at": {
    "label": "Processed At",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Google Maps Store Scraper](https://apify.com/agentx/google-maps-store-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/agentx/google-maps-store-scraper.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
This Task's input is already configured above — use it as-is rather than inventing a new one.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/agentx/google-maps-store-scraper.md

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).
