Google Events Scraper

ENDPOINTS
GET/autocomplete

Autocomplete

Get Google's event-search suggestions for a partial query, each with a Google search link.

QUERY PARAMS

Partial event search. A bare place or name gets " events" appended so the suggestions stay about events.

Examples: concerts in los ang, comedy shows in chi, seattle

Maximum number of suggestions.

Default: 10

Allowed values: 1-20

2-letter country code Google localizes events for. Google's event listings cover English-language markets.

Default: US

Allowed values: any ISO 3166-1 alpha-2 code; events show for US, GB, CA, AU, IN (UK is accepted for GB)

2-letter language code for Google's labels and dates.

Default: en

Allowed values: any ISO 639-1 code (en, es, fr, ...); events show for English searches

{
  "query": "concerts in los ang",
  "count": 10,
  "suggestions": [
    {
      "position": 1,
      "text": "concerts in los angeles this weekend",
      "link": "https://www.google.com/search?q=concerts+in+los+angeles+this+weekend&hl=en&gl=us"
    },
    {
      "position": 2,
      "text": "concerts in los angeles",
      "link": "https://www.google.com/search?q=concerts+in+los+angeles&hl=en&gl=us"
    },
    {
      "position": 3,
      "text": "concerts in los angeles august 2026",
      "link": "https://www.google.com/search?q=concerts+in+los+angeles+august+2026&hl=en&gl=us"
    },
    {
      "position": 4,
      "text": "concerts in los angeles september 2026",
      "link": "https://www.google.com/search?q=concerts+in+los+angeles+september+2026&hl=en&gl=us"
    },
    {
      "position": 5,
      "text": "concerts in los angeles july 2026",
      "link": "https://www.google.com/search?q=concerts+in+los+angeles+july+2026&hl=en&gl=us"
    },
    {
      "position": 6,
      "text": "concerts in los angeles october 2026",
      "link": "https://www.google.com/search?q=concerts+in+los+angeles+october+2026&hl=en&gl=us"
    },
    {
      "position": 7,
      "text": "concerts in los angeles 2026",
      "link": "https://www.google.com/search?q=concerts+in+los+angeles+2026&hl=en&gl=us"
    },
    {
      "position": 8,
      "text": "concerts in los angeles this week",
      "link": "https://www.google.com/search?q=concerts+in+los+angeles+this+week&hl=en&gl=us"
    },
    {
      "position": 9,
      "text": "concerts in los angeles november 2026",
      "link": "https://www.google.com/search?q=concerts+in+los+angeles+november+2026&hl=en&gl=us"
    },
    {
      "position": 10,
      "text": "concerts in los angeles tonight",
      "link": "https://www.google.com/search?q=concerts+in+los+angeles+tonight&hl=en&gl=us"
    }
  ]
}