Google Maps Scraper avatar

Google Maps Scraper

Pricing

$45.00/month + usage

Go to Apify Store
Google Maps Scraper

Google Maps Scraper

Scrape business data from Google Maps. Extract names, addresses, reviews, ratings, and more. Perfect for market research, lead generation, and competitor analysis. Easy to use, proxy-supported, and highly customizable. Start scraping smarter today!

Pricing

$45.00/month + usage

Rating

0.0

(0)

Developer

Rigel Bytes

Rigel Bytes

Maintained by Community

Actor stats

10

Bookmarked

327

Total users

1

Monthly active users

5 days ago

Last modified

Share

Find business leads and contact details from Google Maps for outbound sales, prospecting, and CRM enrichment — for just $2.50 per 1,000 results.


What can Google Maps Scraper do for you?

  • Build targeted lead lists — Extract businesses by keyword, city, state, and country to fill your sales pipeline with qualified prospects.
  • Enrich your CRM — Add phone numbers, websites, addresses, ratings, and categories to every contact record automatically.
  • Analyze local competitors — Uncover who else is in your market, what categories they serve, and how they're reviewed.
  • Monitor business landscapes — Track how many businesses operate in a niche, where they're located, and what services they offer.
  • Scale without headcount — Collect 50 or 50,000 business profiles with the same effort. No manual copy-paste.
  • Export structured data — Pull results as JSON or CSV, ready for spreadsheets, databases, or your sales stack.

What data can you extract?

FieldDescription
🏪 Business NameFull business name as listed on Google Maps
RatingAverage star rating (1–5)
💬 ReviewsTotal number of reviews
📞 PhoneContact phone number
📍 AddressFull street address
🌐 WebsiteBusiness website URL
🏷️ CategoriesService and product categories
🕐 HoursBusiness hours and closed days
🖼️ ImagesPlace photos and featured image
🔍 Place IDUnique Google Maps place identifier
📏 CoordinatesLatitude and longitude
🗣️ Review KeywordsMost frequent words in customer reviews
👤 OwnerBusiness owner name and profile
🏢 AboutService options, accessibility, amenities

Why use this scraper?

  • 🔬 Market research — Understand which businesses operate in a region, their density, and their ratings to spot opportunities.
  • 💰 Sales prospecting — Generate high-quality leads with verified contact data, ready for cold outreach or direct mail.
  • 📊 Competitive intelligence — Track competitor locations, categories, and review sentiment over time.
  • 🤖 Automation — Replace hours of manual Google Maps searching with a single automated run.
  • 🏗️ Data enrichment — Append missing business details to existing databases for cleaner records.

Pricing

  • $2.50/1,000 results
  • No hidden fees or limits on usage.

How to use Google Maps Scraper

  1. Create an Apify account — Sign up at apify.com if you don't have one.
  2. Open the actor — Go to Google Maps Scraper on Apify Store.
  3. Enter your search — Provide a search query (e.g. "Car Washes"), optionally filter by country, state, and city.
  4. Set your limits — Choose how many results you need (default 50) and whether to fetch full place details.
  5. Run the scraper — Click Start and wait for the results.
  6. Download your data — Export as JSON, CSV, or XML from the dataset tab.

Input

PropertyTypeRequiredDefaultDescription
querystringSearch query (e.g. "Car Washes", "Pizza in Chicago")
maxinteger50Maximum number of results to scrape
fullDetailsbooleanfalseFetch each place page for extended fields (hours, images, about, owner). Slower but richer.
proxyConfigurationproxyApify ResidentialProxy configuration — defaults to Apify Residential proxy group
langstringenLanguage for search results (e.g. en, es, fr)
countrystringUnited StatesCountry to search in
statestringState to narrow results
citystringCity to narrow results

📝 Copy for Use:

{
"query": "Car Washes",
"max": 50,
"fullDetails": false,
"lang": "en",
"country": "United States",
"state": "Texas",
"city": "Houston"
}

Output

Output GIF

Why Choose This Scraper?

  • 💸 Affordable: Pay only $2.50 per 1,000 results scraped.
  • 📋 Comprehensive: Extract names, addresses, phones, websites, ratings, reviews, categories, hours, and more.
  • ⚡ Easy to Use: Set a search query, pick a location, and click run — no coding required.
  • 🔒 Reliable: Uses residential proxy support to avoid blocks and return consistent results.
  • Shifter

    • Reliable residential proxies all over the world.
    • Cheap rates
    • Order Shifter Now
    • Get 10% Off any product, use coupan rigelbytes-YoBB.
  • OxyLabs

    • 100M+ Proxies
    • Fastest proxies in the market
    • Real profile, human-like Residential IPs
    • Quality assurance framework for most reliable IPs
    • Get Proxies
  • DataImpulse

Learn More About Proxies

  • Exclusive Deals: Some providers may offer special discounts or bonuses when you use our link.
  • Support Our Work: Each purchase helps us maintain and improve the tools and services we provide.
  • No Extra Cost: You pay the same price, but part of it goes to supporting our efforts.

Running via Apify Console

You can run this actor from the Apify Console by providing the necessary input parameters.

Running via API

You can trigger this actor using the Apify API, passing the required input in the request body.

API Request Examples

Python

from apify_client import ApifyClient
# Initialize the ApifyClient with your API token
client = ApifyClient("<YOUR_API_TOKEN>")
# Prepare the Actor input
run_input = {
"query": "Car Washes",
"max": 50,
"lang": "en",
"country": "United States",
"state": "Texas",
"city": "Houston"
}
# Run the Actor and wait for it to finish
run = client.actor("rigelbytes/google-maps-scraper").call(run_input=run_input)
# Fetch and print Actor results from the run's dataset (if there are any)
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
print(item)

Node.js

import { ApifyClient } from 'apify-client';
// Initialize the ApifyClient with API token
const client = new ApifyClient({
token: '<YOUR_API_TOKEN>',
});
// Prepare Actor input
const input = {
"query": "Car Washes",
"max": 50,
"lang": "en",
"country": "United States",
"state": "Texas",
"city": "Houston"
};
(async () => {
// Run the Actor and wait for it to finish
const run = await client.actor("rigelbytes/google-maps-scraper").call(input);
// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
console.dir(item);
});
})();

cURL

# Set API token
API_TOKEN=<YOUR_API_TOKEN>
# Prepare Actor input
cat > input.json <<'EOF'
{
"query": "Car Washes",
"max": 50,
"lang": "en",
"country": "United States",
"state": "Texas",
"city": "Houston"
}
EOF
# Run the Actor
curl "https://api.apify.com/v2/acts/rigelbytes/google-maps-scraper/runs?token=$API_TOKEN" \
-X POST \
-d @input.json \
-H 'Content-Type: application/json'

🚀 Other Tools by Rigel Bytes

Explore 67 more scraping tools by Rigel Bytes, organized by use case:

📱 Social Media

Scrape Instagram, TikTok, LinkedIn, and more for content research and marketing intelligence.

  • Export Instagram Reels — Extract posts, profiles, and engagement data from Instagram for content research, influencer tracking, and marketing analytics.
  • Facebook Ads Scraper — Extract posts, profiles, and engagement data from Facebook for content research, influencer tracking, and marketing analytics.
  • Instagram Analytics Tool — Extract posts, profiles, and engagement data from Instagram for content research, influencer tracking, and marketing analytics.
  • Instagram Comment Scraper — Extract posts, profiles, and engagement data from Instagram for content research, influencer tracking, and marketing analytics.
  • Instagram Creator Stats — Extract posts, profiles, and engagement data from Instagram for content research, influencer tracking, and marketing analytics.
  • Instagram Engagement Tool — Extract posts, profiles, and engagement data from Instagram for content research, influencer tracking, and marketing analytics.
  • Instagram Post Scraper — Extract posts, profiles, and engagement data from Instagram for content research, influencer tracking, and marketing analytics.
  • instagram-posts — Extract posts, profiles, and engagement data from Instagram for content research, influencer tracking, and marketing analytics.
  • Instagram Profile Scraper — Extract posts, profiles, and engagement data from Instagram for content research, influencer tracking, and marketing analytics.
  • Instagram Reel Scraper — Extract posts, profiles, and engagement data from Instagram for content research, influencer tracking, and marketing analytics.
  • linkedin-company-details — Extract posts, profiles, and engagement data from LinkedIn for content research, influencer tracking, and marketing analytics.
  • Linkedin Company Scraper — Extract posts, profiles, and engagement data from LinkedIn for content research, influencer tracking, and marketing analytics.
  • LinkedIn Profile Scraper — Extract posts, profiles, and engagement data from LinkedIn for content research, influencer tracking, and marketing analytics.
  • Scrape Instagram Creators — Extract posts, profiles, and engagement data from Instagram for content research, influencer tracking, and marketing analytics.
  • Tiktok Comment Scraper — Extract posts, profiles, and engagement data from TikTok for content research, influencer tracking, and marketing analytics.
  • Tiktok Creator Stats — Extract posts, profiles, and engagement data from TikTok for content research, influencer tracking, and marketing analytics.
  • Tiktok Engagement Rate — Extract posts, profiles, and engagement data from TikTok for content research, influencer tracking, and marketing analytics.
  • TikTok Profile Scraper — Extract posts, profiles, and engagement data from TikTok for content research, influencer tracking, and marketing analytics.

🏠 Real Estate

Extract property listings, prices, and agent data from top real estate platforms.

  • Airbnb Address Finder — Scrape property listings and market data from Airbnb for market research, price monitoring, and investment analysis.
  • Airbnb Availability Calendar — Scrape property listings and market data from Airbnb for market research, price monitoring, and investment analysis.
  • Airbnb Detailed Scraper - Search & Listing Details — Scrape property listings and market data from Airbnb for market research, price monitoring, and investment analysis.
  • Airbnb Images Downloader — Scrape property listings and market data from Airbnb for market research, price monitoring, and investment analysis.
  • Airbnb Listing — Scrape property listings and market data from Airbnb for market research, price monitoring, and investment analysis.
  • Airbnb Listing Urls — Scrape property listings and market data from Airbnb for market research, price monitoring, and investment analysis.
  • Airbnb Property Details — Scrape property listings and market data from Airbnb for market research, price monitoring, and investment analysis.
  • Airbnb Reviews — Scrape property listings and market data from Airbnb for market research, price monitoring, and investment analysis.
  • Airbnb Scraper - Search & Listing Details — Scrape property listings and market data from Airbnb for market research, price monitoring, and investment analysis.
  • Bayut Scraper — Scrape property listings and market data from Bayut for market research, price monitoring, and investment analysis.
  • dubai-listing-scraper — Extract unlimited property listings from Bayut.com — the UAE's largest real estate platform. Get detailed property...
  • Export Airbnb Calendar — Scrape property listings and market data from Airbnb for market research, price monitoring, and investment analysis.
  • Furnished Finder Fast — Scrape property listings and market data from Furnished Finder for market research, price monitoring, and investment analysis.
  • Extract Furnished Finder Hosts — Scrape property listings and market data from Furnished Finder for market research, price monitoring, and investment analysis.
  • FurnishedFinder — Scrape property listings and market data from Furnished Finder for market research, price monitoring, and investment analysis.
  • Immobiliare Italy Real Estate Scraper — Scrape property listings and market data from real estate portals for market research, price monitoring, and investment analysis.
  • Immobilienscout24 — Scrape property listings and market data from real estate portals for market research, price monitoring, and investment analysis.
  • Immobilienscout24-scraper — Scrape property listings and market data from real estate portals for market research, price monitoring, and investment analysis.
  • Immowelt Property Scraper — The Immowelt Scraper helps you extract unlimited real estate listings from Immowelt with complete details including...
  • Immowelt Scraper — The Immowelt Scraper helps you extract unlimited real estate listings from Immowelt with complete details including...
  • Land.com Scraper — Scrape property listings and market data from Land.com for market research, price monitoring, and investment analysis.
  • Outdoorsy Scraper — Scrape property listings and market data from Outdoorsy for market research, price monitoring, and investment analysis.
  • Propertyfinder Scraper — Scrape property listings and market data from Property Finder for market research, price monitoring, and investment analysis.
  • Redfin Scraper — Scrape property listings and market data from Redfin for market research, price monitoring, and investment analysis.
  • Rightmove Scraper — Scrape property listings and market data from Rightmove for market research, price monitoring, and investment analysis.
  • RVshare Scraper — Scrape property listings and market data from RVshare for market research, price monitoring, and investment analysis.
  • Unlimited Redfin Scraper — Scrape property listings and market data from Redfin for market research, price monitoring, and investment analysis.
  • Zillow Detail Scraper — Scrape property listings and market data from Zillow for market research, price monitoring, and investment analysis.
  • Zillow Scraper — Scrape property listings and market data from Zillow for market research, price monitoring, and investment analysis.
  • Zoopla Scraper — Scrape property listings and market data from Zoopla for market research, price monitoring, and investment analysis.

✈️ Travel & Hospitality

Monitor rentals, bookings, and travel listings at scale.

  • Ticketmaster Scraper — Collect rental and travel listings from Ticketmaster for pricing intelligence and availability tracking.

🛒 E-commerce

Scrape products, prices, and marketplace data for competitive research.

  • Amazon Product Scraper — Scrape products, prices, and seller data from Amazon for competitor monitoring, pricing, and product research.
  • Amazon Search Scraper — Scrape products, prices, and seller data from Amazon for competitor monitoring, pricing, and product research.
  • Daraz — Scrape products, prices, and seller data from Daraz for competitor monitoring, pricing, and product research.
  • Etsy Scraper — Scrape products, prices, and seller data from Etsy for competitor monitoring, pricing, and product research.
  • Homedepot Scraper — HomeDepot Products Scraper lets you extract product data from homedepot.com using a collection URL and delivery ZIP....

📩 Lead Generation

Find business contacts, leads, and company data for sales and outreach.

  • Company Service Finder — The Company Service Finder uses AI to extract and analyze company services from Google Search & Maps. Get detailed...
  • Doctify Scraper — Doctify Scraper lets you extract doctor and practice data from doctify.com using a search results URL. Collect...
  • FindLaw Law Firm Scraper - Attorney & Law Firm Data Extraction — Scrape law firm profiles from FindLaw.com. Extract detailed attorney and firm information including contact details,...
  • Website Services Finder — Automatically extract and analyze company services from any business website using advanced AI. Choose from 5 AI...
  • Zillow Agents — Find business leads and contact details from Zillow for outbound sales, prospecting, and CRM enrichment.
  • Zillow Agents Phone — Find business leads and contact details from Zillow for outbound sales, prospecting, and CRM enrichment.

⭐ Reviews & Ratings

Monitor reviews and reputation data across review platforms.

  • Airbnb Listing Reviews — Collect reviews and ratings from Airbnb for reputation monitoring and customer insights.
  • BBB Scraper — Collect reviews and ratings from BBB for reputation monitoring and customer insights.
  • Rottentomatoes Reviews Scraper — Collect reviews and ratings from Rotten Tomatoes for reputation monitoring and customer insights.
  • Trustpilot Reviews Scraper — Collect reviews and ratings from Trustpilot for reputation monitoring and customer insights.

🍔 Food & Delivery

Extract restaurant, grocery, and delivery platform data.

  • Instacart Scraper — Scrape menus, stores, and delivery data from Instacart for data-driven research and automation.
  • Publix Scraper — Scrape menus, stores, and delivery data from Publix for data-driven research and automation.

🛠️ Developer Tools

General-purpose scraping and automation tools.

  • Web Crawler — This web crawler is designed to provide users with complete flexibility by allowing them to use their **own...

Understanding Proxies:

When scraping data or browsing anonymously, proxies are essential. They act as intermediaries, masking your original IP address and allowing you to send requests from another location.

Why Use Proxies?

  • Avoid IP Blocks: By routing requests through proxies, you prevent the target website from recognizing your IP as a scraper or spammer.
  • Access Geo-restricted Content: Proxies let you access content or websites restricted by location.
  • Enhance Anonymity: Hide your actual IP, ensuring privacy while scraping or browsing.

Types of Proxies

  1. Residential Proxies
    • Real IP addresses provided by ISPs to home users.
    • They mimic regular users, making them harder to detect.
    • Best for: Long-term, undetectable scraping, and avoiding blocks.
  2. Data Center Proxies
    • IP addresses from servers in data centers.
    • Faster and cheaper than residential proxies but easier to detect and block.
    • Best for: High-speed scraping, but with a higher risk of detection.
  3. Mobile Proxies
    • IPs provided by mobile carriers (3G/4G/5G networks).
    • Very difficult to detect, as they appear as regular mobile users.
    • Best for: Mobile-related scraping or avoiding sophisticated blocks.

Rotating Proxies vs. Straight Proxies

  • Rotating Proxies: Every request you send goes through a different proxy, making it harder for websites to detect patterns.
  • Straight Proxies: All requests are sent through the same proxy, making it easier to track your IP.

About Rigel Bytes

Rigel Bytes specializes in web scraping, automation, and data analytics. We help businesses extract and leverage valuable data for informed decision-making.

Contact Us

Ready to unlock the power of data? Reach out to us at (contact@rigelbytes.com) or book an appointment with us to learn more about how we can help you achieve your data goals.

Detailed Data

[
{
"name": "MM TOP TEAM",
"place_id": "0x80c2c1e345963a45:0x376fd8ae5c0cf2de",
"rating": 5,
"reviews": 0,
"phone": "(818) 970-0080",
"website": null,
"address": "MM TOP TEAM, 300 Wonderview Dr, Glendale, CA 91202",
"main_category": "Martial arts club",
"coordinates": {
"latitude": 34.1772059,
"longitude": -118.2595491
},
"featured_image": "https://lh3.googleusercontent.com/gps-cs-s/APNQkAGbNxzYrMZI4K0T0tvTQFjD2mtCtZQU0a08zU0J4H2X69R5rbZSvMEgjxHH8DscDqTNhQVpNFeC2ys4XHd6Uf1zOr8iPpNYJQ4EQMfpkTfq-BgYh1_ZDQ9prsdF8f_NxTsVu7Js9ElC-Iea=w86-h152-k-no",
"link": "https://www.google.com/maps/place/MM+TOP+TEAM/data=!4m7!3m6!1s0x80c2c1e345963a45:0x376fd8ae5c0cf2de!8m2!3d34.1772059!4d-118.2595491!16s%2Fg%2F11yzwz0l53!19sChIJRTqWRePBwoAR3vIMXK7Ybzc?authuser=0&hl=en&rclk=1",
"hours_list": [
{
"day": "Friday",
"times": [
"7 AM-9 PM"
]
}
],
"status": null,
"plus_code": null,
"price_range": null,
"description": null,
"is_spending_on_ads": false,
"cid": "ChIJRTqWRePBwoAR3vIMXK7Ybzc"
},
{
"name": "Bejanian Martial Arts",
"place_id": "0x80c2c106d99a97d1:0x2d9825f87a667775",
"rating": 4.9,
"reviews": 0,
"phone": "(818) 242-3684",
"website": "http://www.bejanianmartialarts.com/",
"address": "Bejanian Martial Arts, 809 E Broadway, Glendale, CA 91205",
"main_category": "Martial arts school",
"coordinates": {
"latitude": 34.1464654,
"longitude": -118.24514149999999
},
"featured_image": "https://lh3.googleusercontent.com/gps-cs-s/APNQkAHQu78DxOwhBdo4tp4uf6bYbfCaS8oOlN-2rsBaJgpYAuvbE2PpNzMuOSJgFbh1Rye9x9doQi1P5TqjDXcREnCEPrJpu7qkEXtvtlEvRqHS16b9iVilB2iEsQsocsFcwRYSiKqe=w114-h86-k-no",
"link": "https://www.google.com/maps/place/Bejanian+Martial+Arts/data=!4m7!3m6!1s0x80c2c106d99a97d1:0x2d9825f87a667775!8m2!3d34.1464654!4d-118.24514149999999!16s%2Fg%2F1thvh62_!19sChIJ0Zea2QbBwoARdXdmevglmC0?authuser=0&hl=en&rclk=1",
"hours_list": [
{
"day": "Friday",
"times": [
"3-8 PM"
]
}
],
"status": null,
"plus_code": null,
"price_range": null,
"description": null,
"is_spending_on_ads": false,
"cid": "ChIJ0Zea2QbBwoARdXdmevglmC0"
},
{
"name": "KD MMA Mixed Martial Arts Academy",
"place_id": "0x80c2c13390029259:0xeaa1a81538a7013c",
"rating": 5,
"reviews": 0,
"phone": "(747) 231-5550",
"website": "https://kdmma.com/",
"address": "KD MMA Mixed Martial Arts Academy, 555 Riverdale Dr # C, Glendale, CA 91204",
"main_category": "Kickboxing school",
"coordinates": {
"latitude": 34.1392163,
"longitude": -118.26693809999999
},
"featured_image": "https://lh3.googleusercontent.com/gps-cs-s/APNQkAHzZ3nlZlKCuJc7ls3y__HIFtfiKLp1SgHgkI7NKrEj5JNa0HXi-iOOLtvGwPGX2XWIABYAq7shvhde3u6Mf1XRsfMz71fBQge-xebsuTFTT86o3f-3hogLMkzJxE4R8FkviyT0=w152-h86-k-no",
"link": "https://www.google.com/maps/place/KD+MMA+Mixed+Martial+Arts+Academy/data=!4m7!3m6!1s0x80c2c13390029259:0xeaa1a81538a7013c!8m2!3d34.1392163!4d-118.26693809999999!16s%2Fg%2F11gmccjjrt!19sChIJWZICkDPBwoARPAGnOBWooeo?authuser=0&hl=en&rclk=1",
"hours_list": [
{
"day": "Friday",
"times": [
"9 AM-10 PM"
]
}
],
"status": null,
"plus_code": null,
"price_range": null,
"description": null,
"is_spending_on_ads": false,
"cid": "ChIJWZICkDPBwoARPAGnOBWooeo"
},
{
"name": "Yeremyan's Taekwondo Club",
"place_id": "0x80c2c1f1ebab45fb:0x8e6edad788065ced",
"rating": 5,
"reviews": 0,
"phone": "(818) 717-7406",
"website": "https://yeremyantaekwondo.com/",
"address": "Yeremyan's Taekwondo Club, 317 1/2 N Verdugo Rd, Glendale, CA 91206",
"main_category": "Martial arts school",
"coordinates": {
"latitude": 34.150561499999995,
"longitude": -118.23645069999999
},
"featured_image": "https://lh3.googleusercontent.com/gps-cs-s/APNQkAHsYXb-u2ywVZenXivmskZ7-6tO_0Y8c23RpkApabkk4FWNuAeKOhgL_bWtrayI8_PHolfkmRB-bbU7mjO5HWdfnmYBMvnjwu69MDcqHwujf-gr4fvgWlxVjbr27Z9E9wwyB3s=w86-h114-k-no",
"link": "https://www.google.com/maps/place/Yeremyan%27s+Taekwondo+Club/data=!4m7!3m6!1s0x80c2c1f1ebab45fb:0x8e6edad788065ced!8m2!3d34.150561499999995!4d-118.23645069999999!16s%2Fg%2F11fqs9hbbt!19sChIJ-0Wr6_HBwoAR7VwGiNfabo4?authuser=0&hl=en&rclk=1",
"hours_list": [
{
"day": "Friday",
"times": [
"3-7:30 PM"
]
}
],
"status": null,
"plus_code": null,
"price_range": null,
"description": null,
"is_spending_on_ads": false,
"cid": "ChIJ-0Wr6_HBwoAR7VwGiNfabo4"
},
{
"name": "K Taekwondo - Glendale",
"place_id": "0x80c2c108a83ca351:0xd47fd36469ebbaeb",
"rating": 5,
"reviews": 0,
"phone": "(818) 585-2874",
"website": "https://k-taekwondo.com/",
"address": "K Taekwondo - Glendale, 1428 E Colorado St # B, Glendale, CA 91205",
"main_category": "Taekwondo school",
"coordinates": {
"latitude": 34.1424612,
"longitude": -118.2325087
},
"featured_image": "https://lh3.googleusercontent.com/gps-cs-s/APNQkAHXK7-V3gFDPzy8RFNYi6gFu_YJ0HQD9tS6CUseezG7IqnNoqSUjYfo1Pi6Dx1ngWiISOckJFiwU8_eht-F5NrdwyAtg1jFHgE2PajYHWDD0vdvVuNkj_Opln5FF0wIezfAKbh4=w129-h86-k-no",
"link": "https://www.google.com/maps/place/K+Taekwondo+-+Glendale/data=!4m7!3m6!1s0x80c2c108a83ca351:0xd47fd36469ebbaeb!8m2!3d34.1424612!4d-118.2325087!16s%2Fg%2F1tl4d964!19sChIJUaM8qAjBwoAR67rraWTTf9Q?authuser=0&hl=en&rclk=1",
"hours_list": [
{
"day": "Friday",
"times": [
"1-9 PM"
]
}
],
"status": null,
"plus_code": null,
"price_range": null,
"description": null,
"is_spending_on_ads": false,
"cid": "ChIJUaM8qAjBwoAR67rraWTTf9Q"
},
{
"name": "Gracie Barra Glendale",
"place_id": "ChIJDzRbi1TAwoARlX10hEylh6A",
"rating": 4.9,
"reviews": 50,
"phone": "(818) 740-5466",
"website": "http://www.gbglendale.com/",
"address": "Gracie Barra Glendale, 406 E Colorado St, Glendale, CA 91205",
"main_category": "Martial arts school",
"coordinates": {
"latitude": 34.1422817,
"longitude": -118.250996
},
"featured_image": "https://lh3.googleusercontent.com/gps-cs-s/APNQkAEPPqwRz4rkK2uv-GLe-mgAYue4dKIyLvsPeE6W_kqECgUS5ytQcPPvss2FYU4g3sT6kFPbpBwdGH4bcC8ZY0vsWQZP-m6IXbOtW0FU-MvsDbeNihmUVirWZtOpG1vQRcNTg4XJlQ=w408-h306-k-no",
"link": "https://www.google.com/maps/place/Gracie+Barra+Glendale/data=!4m7!3m6!1s0x80c2c0548b5b340f:0xa087a54c84747d95!8m2!3d34.1422817!4d-118.250996!16s%2Fg%2F1tqyfs43!19sChIJDzRbi1TAwoARlX10hEylh6A?authuser=0&hl=en&rclk=1",
"hours_list": [
{
"day": "Friday",
"times": [
"6-7:30 AM",
"12-8:30 PM"
]
}
],
"status": null,
"plus_code": "4PRX+WJ Glendale, California",
"price_range": null,
"description": "We are a Brazilian Jiu Jitsu martial arts school offering classes for kids, teens, and adults. We teach self-defense and sport Jiu Jitsu, and have both gi and no gi glasses. We offer free trial classes, and welcome all skill and fitness levels. From seasoned veterans to brand new beginners, Gracie Barra Glendale is Jiu Jitsu for Everyone.",
"is_spending_on_ads": false,
"cid": "11567395915982732693",
"competitors": [
{
"name": "Legacy Glendale",
"link": "https://www.google.com/maps/search/Legacy+Glendale/@34.138093999999995,-118.25531199999999?authuser=0&hl=en&entry=ttu",
"reviews": 134,
"rating": 4.8,
"main_category": {
"38": [
[
[
null,
null,
null,
null,
null,
null,
[
"https://lh3.googleusercontent.com/gps-cs-s/APNQkAGnnsQWtnPY4CtNlCzM7lRree9LfmDYkn0L1r0OgduxumXPYJ75_oH3OQRXnb9WqOsF1TwtjHI_YaZltRSXegXPxmJ_G9YPIYNx5DXLocIclHc-Kyl3WUlZ9DcOKTzbNiMbPEWp=w156-h156-n-k-no",
null,
null,
[
156,
156
]
],
null,
null,
"UA01auznF_-iqtsPuvm20QE",
"0ahUKEwjsz5-TgJOVAxV_kWoFHbq8LRoQzCcIrAEoAA"
]
],
null,
null,
"UA01auznF_-iqtsPuvm20QE"
],
"107": "Martial arts school"
}
},
{
"name": "Gracie Jiu Jitsu Pasadena",
"link": "https://www.google.com/maps/search/Gracie+Jiu+Jitsu+Pasadena/@34.1503571,-118.15161069999999?authuser=0&hl=en&entry=ttu",
"reviews": 46,
"rating": 5,
"main_category": {
"38": [
[
[
null,
null,
null,
null,
null,
null,
[
"https://lh3.googleusercontent.com/gps-cs-s/APNQkAHeIegK5kvABw6IOwaBYTGkloJMRv2sFywHPADXCMYguAKmql1kCHnpP72s-7ym-ySZylTvlisx6WkWkTm5Icynr2uNQf0qyasStSwi4DRCtnGuI6JRGFktZJMfwP3RJrStV_A1=w156-h156-n-k-no",
null,
null,
[
156,
156
]
],
null,
null,
"UA01auznF_-iqtsPuvm20QE",
"0ahUKEwjsz5-TgJOVAxV_kWoFHbq8LRoQzCcIwAEoAA"
]
],
null,
null,
"UA01auznF_-iqtsPuvm20QE"
],
"107": "Martial arts school"
}
},
{
"name": "Gracie Barra La Canada Flintridge Brazilian Jiu Jitsu",
"link": "https://www.google.com/maps/search/Gracie+Barra+La+Ca%C3%B1ada+Flintridge+Brazilian+Jiu+Jitsu/@34.202393,-118.19244189999999?authuser=0&hl=en&entry=ttu",
"reviews": 42,
"rating": 4.8,
"main_category": {
"38": [
[
[
null,
null,
null,
null,
null,
null,
[
"https://lh3.googleusercontent.com/gps-cs-s/APNQkAGlA3VHx8HZBHzixxCSwI02kIikbz6ywsnLSQnPoLYInOSu_Ums6hXh644FmBzsX4eVhRiZZd7Sz0A6tEnFJbV276-0fFjqnA7RTPC6JsCLdXGdH7aAKKhSXrvQ9TTM3cqLtPc=w156-h156-n-k-no",
null,
null,
[
156,
156
]
],
null,
null,
"UA01auznF_-iqtsPuvm20QE",
"0ahUKEwjsz5-TgJOVAxV_kWoFHbq8LRoQzCcIsQEoAA"
]
],
null,
null,
"UA01auznF_-iqtsPuvm20QE"
],
"107": "Jujitsu school"
}
},
{
"name": "TOTAL JIU-JITSU LA",
"link": "https://www.google.com/maps/search/TOTAL+JIU-JITSU+LA/@34.133708899999995,-118.25537939999998?authuser=0&hl=en&entry=ttu",
"reviews": 17,
"rating": 4.8,
"main_category": {
"38": [
[
[
null,
null,
null,
null,
null,
null,
[
"https://lh3.googleusercontent.com/gps-cs-s/APNQkAG3hT_atrdOKX5ONEwVXjZtjspRUKgN1AKjASxqPErMsXpD2-Rn9Rq-D_Qe9hzjwb35kjMXvwf6S3KEq8EAK2XIKSPPqfKen4pCU5nYc3wBXaH5mDthLJqP5XjuobadzGJSX3qb=w156-h156-n-k-no",
null,
null,
[
156,
156
]
],
null,
null,
"UA01auznF_-iqtsPuvm20QE",
"0ahUKEwjsz5-TgJOVAxV_kWoFHbq8LRoQzCcItgEoAA"
]
],
null,
null,
"UA01auznF_-iqtsPuvm20QE"
],
"107": "Martial arts school"
}
},
{
"name": "Gracie Barra Studio City",
"link": "https://www.google.com/maps/search/Gracie+Barra+Studio+City/@34.1432169,-118.4017235?authuser=0&hl=en&entry=ttu",
"reviews": 16,
"rating": 5,
"main_category": {
"38": [
[
[
null,
null,
null,
null,
null,
null,
[
"https://lh3.googleusercontent.com/gps-cs-s/APNQkAHjvcgv5MjzWiY234_gG72nbaWbxsDK77fIo89Ixi5KLqmyqEroY5BVJKUXHgImF6kYrM_u1c6fM4aCmwbmPGLhvgjRzQ0Vaf7C-K1-HI-r1O7-E9L6PegkHAjZSkbOHJX0jg75=w156-h156-n-k-no",
null,
null,
[
156,
156
]
],
null,
null,
"UA01auznF_-iqtsPuvm20QE",
"0ahUKEwjsz5-TgJOVAxV_kWoFHbq8LRoQzCcIuwEoAA"
]
],
null,
null,
"UA01auznF_-iqtsPuvm20QE"
],
"107": "Jujitsu school"
}
}
],
"can_claim": false,
"owner": {
"id": "106249244235570567781",
"name": "Gracie Barra Glendale (Owner)",
"link": "https://www.google.com/maps/contrib/106249244235570567781"
},
"categories": [
"Martial arts school",
"Jujitsu school",
"Self defense school"
],
"workday_timing": "6-7:30 AM, 12-8:30 PM",
"closed_on": "Open All Days",
"review_keywords": [
{
"keyword": "bjj",
"count": 9
},
{
"keyword": "kind professors",
"count": 5
},
{
"keyword": "patient instructors",
"count": 3
},
{
"keyword": "awesome coaches",
"count": 2
},
{
"keyword": "welcoming culture",
"count": 2
},
{
"keyword": "sparring",
"count": 2
},
{
"keyword": "welcoming atmosphere",
"count": 9
},
{
"keyword": "positive community",
"count": 2
},
{
"keyword": "personal development",
"count": 2
},
{
"keyword": "discipline",
"count": 3
}
],
"reviews_link": "https://search.google.com/local/reviews?placeid=ChIJDzRbi1TAwoARlX10hEylh6A&q=Gracie+Barra+Glendale&authuser=0&hl=en&gl=US",
"detailed_address": {
"ward": "Mariposa",
"street": "406 E Colorado St",
"city": "Glendale",
"postal_code": "91205",
"state": "California",
"country_code": "US"
},
"time_zone": "America/Los_Angeles",
"data_id": "0x80c2c0548b5b340f:0xa087a54c84747d95",
"menu": {
"link": "http://places.singleplatform.com/gracie-barra-glendale/menu?ref=google",
"source": "places.singleplatform.com"
},
"about": [
{
"id": "service_options",
"name": "Service options",
"options": [
{
"name": "Online classes",
"enabled": true
}
]
},
{
"id": "accessibility",
"name": "Accessibility",
"options": [
{
"name": "Wheelchair accessible entrance",
"enabled": true
},
{
"name": "Wheelchair accessible parking lot",
"enabled": true
},
{
"name": "Wheelchair accessible restroom",
"enabled": true
}
]
},
{
"id": "amenities",
"name": "Amenities",
"options": [
{
"name": "Gender-neutral restroom",
"enabled": true
},
{
"name": "Restroom",
"enabled": true
}
]
},
{
"id": "payments",
"name": "Payments",
"options": [
{
"name": "Credit cards",
"enabled": true
},
{
"name": "Debit cards",
"enabled": true
},
{
"name": "Credit cards",
"enabled": true
}
]
},
{
"id": "parking",
"name": "Parking",
"options": [
{
"name": "On-site parking",
"enabled": true
}
]
}
],
"images": [
{
"about": "All",
"link": "https://lh3.googleusercontent.com/gps-cs-s/APNQkAEPPqwRz4rkK2uv-GLe-mgAYue4dKIyLvsPeE6W_kqECgUS5ytQcPPvss2FYU4g3sT6kFPbpBwdGH4bcC8ZY0vsWQZP-m6IXbOtW0FU-MvsDbeNihmUVirWZtOpG1vQRcNTg4XJlQ=w397-h298-k-no"
},
{
"about": "Latest",
"link": "https://lh3.googleusercontent.com/gps-cs-s/APNQkAH20-y1w52668PZrTqNdKtCRZ5obEyag-p58GVYIaniR2-qpRoYvIXPgMjAhWa3rByxLJCTueYcnQPp2yEMHHTr2vgHrzI0Cx6mSA2LrO9CJizsmWWyZ60HhSTlVCQuh0AqMw5ly01Lyic=w224-h298-k-no"
},
{
"about": "Videos",
"link": "https://lh3.googleusercontent.com/gps-cs-s/APNQkAFrri-CQbfUdOX7wPKuptDg98mJk84Vq2_525Dz8BqNicHNEs372qOBGhHcrLcODl2OpnLJDcPvtMZbBMbyj30ugdirRLT0nFem7s96koZGqPZQbMujeP3sY_3Rs2G3-vYefLpA=w224-h423-k-no"
},
{
"about": "Community",
"link": "https://lh3.googleusercontent.com/gps-cs-s/APNQkAEY8xxEYJ7Quu0pnkMYmozJ3dHlqf7GPFk5j6OFK9tNMLSoihfVmCXnC22zqP7hTSZ0hSFmVOLrpmd-QAX_HTUwH6M5mfdgI2Nas4jRofwoiBQO4Dthk13kmCcwJ81y38lqt9w=w224-h336-k-no"
},
{
"about": "Martial arts",
"link": "https://lh3.googleusercontent.com/gps-cs-s/APNQkAHaMu89HiIPL9K3dAyBz1UYNg1dk6i-ouZV9bQ_XKTFJy8VSJioo2pG0eZjtHQ0OpKT_9mHvqjd0ZGEKf0f-ArqgkilNNT1XbOyGd5-mn_YaBC2JX9dIgBNk-s1gwoTRNktGguzmg=w224-h298-k-no"
},
{
"about": "By owner",
"link": "https://lh3.googleusercontent.com/gps-cs-s/APNQkAHBL1o4fk6IHa5jgkvVoDNSid_-FjdVD3mePgwUMZp7MRJXxJ9uhe2yK--aLY5sVHTb_-H-x5K3SBLe1No_l5Oa23Jlm-If-g1GYIrlNAID_z6VkA-SwUfa1tX_8NOCiWXChHZ3=w397-h298-k-no"
},
{
"about": "Street View & 360deg",
"link": "https://lh3.googleusercontent.com/gps-cs-s/APNQkAFzUCSSZham6sPPJGXGvJr1hwT4WlvSEodxPQuE59cIjJVfkKmvXWEOQUyuoElgCYkXYi53wtiWoAdZ8DmsiqjyMyMsbMiB_Fa1WQ-OeUJyA8p7u9p9zT_R7w1-5DZ-Vd_qvkZI=w224-h298-k-no-pi-10-ya71.99999-ro-0-fo100"
}
],
"hours": [
{
"day": "Monday",
"times": [
"6-7:30 AM",
"12-8:30 PM"
]
},
{
"day": "Tuesday",
"times": [
"12-8:30 PM"
]
},
{
"day": "Wednesday",
"times": [
"6-7:30 AM",
"12-8:30 PM"
]
},
{
"day": "Thursday",
"times": [
"12-8:30 PM"
]
},
{
"day": "Friday",
"times": [
"6-7:30 AM",
"12-8:30 PM"
]
},
{
"day": "Saturday",
"times": [
"9 AM-12 PM"
]
},
{
"day": "Sunday",
"times": [
"10 AM-12 PM"
]
}
]
},
{
"name": "Legacy Glendale",
"place_id": "ChIJgR5dZR3BwoARHa1qcMCWbNQ",
"rating": 4.8,
"reviews": 134,
"phone": "(818) 395-0739",
"website": "http://www.legacyglendale.com/",
"address": "Legacy Glendale, 705 S Brand Blvd, Glendale, CA 91204",
"main_category": "Martial arts school",
"coordinates": {
"latitude": 34.138093999999995,
"longitude": -118.25531199999999
},
"featured_image": "https://lh3.googleusercontent.com/gps-cs-s/APNQkAGnnsQWtnPY4CtNlCzM7lRree9LfmDYkn0L1r0OgduxumXPYJ75_oH3OQRXnb9WqOsF1TwtjHI_YaZltRSXegXPxmJ_G9YPIYNx5DXLocIclHc-Kyl3WUlZ9DcOKTzbNiMbPEWp=w408-h306-k-no",
"link": "https://www.google.com/maps/place/Legacy+Glendale/data=!4m7!3m6!1s0x80c2c11d655d1e81:0xd46c96c0706aad1d!8m2!3d34.138093999999995!4d-118.25531199999999!16s%2Fg%2F1td00rms!19sChIJgR5dZR3BwoARHa1qcMCWbNQ?authuser=0&hl=en&rclk=1",
"hours_list": [
{
"day": "Friday",
"times": [
"6 AM-7 PM"
]
}
],
"status": null,
"plus_code": "4PQV+6V Glendale, California",
"price_range": null,
"description": "Join Legacy BJJ Glendale, the leading Brazilian Jiu-Jitsu academy in Glendale! We offer expert BJJ training for all ages and levels, including kids, women, beginners, and advanced practitioners. Build strength, confidence, and self-defense skills in a safe and supportive environment. Our mission is to help every student grow on and off the mat while being part of a welcoming, inspiring community. Experience the best BJJ classes, improve your technique, and transform your body and mind at Legacy BJJ Glendale.",
"is_spending_on_ads": false,
"cid": "15306774986789399837",
"competitors": [
{
"name": "Legacy Jiu-Jitsu West Adams",
"link": "https://www.google.com/maps/search/Legacy+Jiu-Jitsu+West+Adams/@34.0323754,-118.33753269999998?authuser=0&hl=en&entry=ttu",
"reviews": 100,
"rating": 5,
"main_category": {
"38": [
[
[
null,
null,
null,
null,
null,
null,
[
"https://lh3.googleusercontent.com/gps-cs-s/APNQkAEElqcha2DZPRAqVE2peM4MedKKjCjsCKbBj0LUGRk6u1XwT3UBo70NL2CGAZG47jZBEAkaAKZdSPpVbXHp42QW2wbQVa7hiR3UeY1R2C0XxF6GIwCpHNJM55B0Cq9IGYtd9Dw=w156-h156-n-k-no",
null,
null,
[
156,
156
]
],
null,
null,
"UA01at_YHbG5mtkP96SVyQ0",
"0ahUKEwjfwKWTgJOVAxWxnCYFHXdSJdkQzCcI2QEoAA"
]
],
null,
null,
"UA01at_YHbG5mtkP96SVyQ0"
],
"107": "Martial arts school"
}
},
{
"name": "Legacy Burbank",
"link": "https://www.google.com/maps/search/Legacy+Burbank/@34.176865299999996,-118.31788940000001?authuser=0&hl=en&entry=ttu",
"reviews": 86,
"rating": 4.8,
"main_category": {
"38": [
[
[
null,
null,
null,
null,
null,
null,
[
"https://lh3.googleusercontent.com/gps-cs-s/APNQkAFnMyDAPbRJTvCnMp4FvoEAPZnSkQhEFmEOZxNZLzbLVnW2rvfD7DQ0780VMbCmWKxGJm3_UJG4soFkV9crUXa9UqJw64wsbzyHon5jm9L56NRfC-V2qQ0T_4PTrjuqWNui24LDaCJG4a64=w156-h156-n-k-no",
null,
null,
[
156,
156
]
],
null,
null,
"UA01at_YHbG5mtkP96SVyQ0",
"0ahUKEwjfwKWTgJOVAxWxnCYFHXdSJdkQzCcIzwEoAA"
]
],
null,
null,
"UA01at_YHbG5mtkP96SVyQ0"
],
"107": "Physical fitness program"
}
},
{
"name": "Gracie Barra Glendale",
"link": "https://www.google.com/maps/search/Gracie+Barra+Glendale/@34.1422817,-118.25099599999999?authuser=0&hl=en&entry=ttu",
"reviews": 50,
"rating": 4.9,
"main_category": {
"38": [
[
[
null,
null,
null,
null,
null,
null,
[
"https://lh3.googleusercontent.com/gps-cs-s/APNQkAEPPqwRz4rkK2uv-GLe-mgAYue4dKIyLvsPeE6W_kqECgUS5ytQcPPvss2FYU4g3sT6kFPbpBwdGH4bcC8ZY0vsWQZP-m6IXbOtW0FU-MvsDbeNihmUVirWZtOpG1vQRcNTg4XJlQ=w156-h156-n-k-no",
null,
null,
[
156,
156
]
],
null,
null,
"UA01at_YHbG5mtkP96SVyQ0",
"0ahUKEwjfwKWTgJOVAxWxnCYFHXdSJdkQzCcIygEoAA"
]
],
null,
null,
"UA01at_YHbG5mtkP96SVyQ0"
],
"107": "Martial arts school"
}
},
{
"name": "TOTAL JIU-JITSU LA",
"link": "https://www.google.com/maps/search/TOTAL+JIU-JITSU+LA/@34.133708899999995,-118.25537939999998?authuser=0&hl=en&entry=ttu",
"reviews": 17,
"rating": 4.8,
"main_category": {
"38": [
[
[
null,
null,
null,
null,
null,
null,
[
"https://lh3.googleusercontent.com/gps-cs-s/APNQkAG3hT_atrdOKX5ONEwVXjZtjspRUKgN1AKjASxqPErMsXpD2-Rn9Rq-D_Qe9hzjwb35kjMXvwf6S3KEq8EAK2XIKSPPqfKen4pCU5nYc3wBXaH5mDthLJqP5XjuobadzGJSX3qb=w156-h156-n-k-no",
null,
null,
[
156,
156
]
],
null,
null,
"UA01at_YHbG5mtkP96SVyQ0",
"0ahUKEwjfwKWTgJOVAxWxnCYFHXdSJdkQzCcI1AEoAA"
]
],
null,
null,
"UA01at_YHbG5mtkP96SVyQ0"
],
"107": "Martial arts school"
}
},
{
"name": "Animus Grappling",
"link": "https://www.google.com/maps/search/Animus+Grappling/@34.2030781,-118.2267959?authuser=0&hl=en&entry=ttu",
"reviews": 7,
"rating": 5,
"main_category": {
"38": [
[
[
null,
null,
null,
null,
null,
null,
[
"https://lh3.googleusercontent.com/gps-cs-s/APNQkAFq8gfyqxG8VgW5t6Jivbz0p3CJvSkLPriIWZTYlJ-h8SZBTcJ9rFVmOCQ2-djW3JiuOgrjJt5sLCdqIZWdpP1_9FJPjK4GqTQR-bbzeLgSEJECS0kJQJx_dq-eGB44iUFJ-ZXr=w156-h156-n-k-no",
null,
null,
[
156,
156
]
],
null,
null,
"UA01at_YHbG5mtkP96SVyQ0",
"0ahUKEwjfwKWTgJOVAxWxnCYFHXdSJdkQzCcI3gEoAA"
]
],
null,
null,
"UA01at_YHbG5mtkP96SVyQ0"
],
"107": "Martial arts school"
}
}
],
"can_claim": false,
"owner": {
"id": "115729641145590295707",
"name": "Legacy Glendale (Owner)",
"link": "https://www.google.com/maps/contrib/115729641145590295707"
},
"categories": [
"Martial arts school",
"Boot camp",
"Gym",
"Kickboxing school",
"Store",
"Summer camp organizer"
],
"workday_timing": "6 AM-9 PM",
"closed_on": [
"Sunday"
],
"review_keywords": [
{
"keyword": "jiu jitsu",
"count": 35
},
{
"keyword": "kids jiujitsu",
"count": 2
},
{
"keyword": "patient coaches",
"count": 7
},
{
"keyword": "supportive coaches",
"count": 6
},
{
"keyword": "flexible class schedule",
"count": 3
},
{
"keyword": "kids program",
"count": 6
},
{
"keyword": "patient instructors",
"count": 7
},
{
"keyword": "professors",
"count": 25
},
{
"keyword": "competitive tournaments",
"count": 2
},
{
"keyword": "welcoming atmosphere",
"count": 18
}
],
"reviews_link": "https://search.google.com/local/reviews?placeid=ChIJgR5dZR3BwoARHa1qcMCWbNQ&q=Legacy+Glendale&authuser=0&hl=en&gl=US",
"detailed_address": {
"ward": "Pacific - Edison",
"street": "705 S Brand Blvd",
"city": "Glendale",
"postal_code": "91204",
"state": "California",
"country_code": "US"
},
"time_zone": "America/Los_Angeles",
"data_id": "0x80c2c11d655d1e81:0xd46c96c0706aad1d",
"about": [
{
"id": "accessibility",
"name": "Accessibility",
"options": [
{
"name": "Wheelchair accessible entrance",
"enabled": true
},
{
"name": "Wheelchair accessible parking lot",
"enabled": true
}
]
},
{
"id": "amenities",
"name": "Amenities",
"options": [
{
"name": "Restroom",
"enabled": true
}
]
},
{
"id": "payments",
"name": "Payments",
"options": [
{
"name": "Credit cards",
"enabled": true
},
{
"name": "Debit cards",
"enabled": true
},
{
"name": "NFC mobile payments",
"enabled": true
},
{
"name": "Credit cards",
"enabled": true
}
]
}
],
"images": [
{
"about": "All",
"link": "https://lh3.googleusercontent.com/gps-cs-s/APNQkAGnnsQWtnPY4CtNlCzM7lRree9LfmDYkn0L1r0OgduxumXPYJ75_oH3OQRXnb9WqOsF1TwtjHI_YaZltRSXegXPxmJ_G9YPIYNx5DXLocIclHc-Kyl3WUlZ9DcOKTzbNiMbPEWp=w397-h298-k-no"
},
{
"about": "Community",
"link": "https://lh3.googleusercontent.com/gps-cs-s/APNQkAFPh4P1oMs-HvvH674nhBsfr56VxWoYzrw5dh7qNU5wrWo-oSV_TshZYD8JUjreuTOd92heWfanFgtgDjD1qcVV8yv3TbAOvZp3C4phFjOSH-I3m5Zx7UOEIYpT8hENCZCU2v8=w224-h298-k-no"
},
{
"about": "Martial arts",
"link": "https://lh3.googleusercontent.com/gps-cs-s/APNQkAHgPcGnt0yIkyVoe37MkdXs20nNyd61PI6lkbizdORYkniZ2vbDJTn1RMWg4gxQcbU5HYQrMjSUBUtOYE5dVGMHtsgyzUEyXV_G65-D_Yy7eor_NzC8maWVxo9s60K2eQdp3EtGnw=w397-h298-k-no"
},
{
"about": "Street View & 360deg",
"link": "https://streetviewpixels-pa.googleapis.com/v1/thumbnail?panoid=2OtBMTahPp7koMsGzFJSQw&cb_client=maps_sv.tactile.gps&w=224&h=298&yaw=277.07285&pitch=0&thumbfov=100"
}
],
"hours": [
{
"day": "Monday",
"times": [
"6 AM-9 PM"
]
},
{
"day": "Tuesday",
"times": [
"10:30 AM-9 PM"
]
},
{
"day": "Wednesday",
"times": [
"6 AM-9 PM"
]
},
{
"day": "Thursday",
"times": [
"10:30 AM-9 PM"
]
},
{
"day": "Friday",
"times": [
"6 AM-7 PM"
]
},
{
"day": "Saturday",
"times": [
"9 AM-1 PM"
]
},
{
"day": "Sunday",
"times": [
"Closed"
]
}
],
"most_popular_times": [
{
"hour_of_day": 16,
"average_popularity": 49,
"time_label": "4 PM"
},
{
"hour_of_day": 17,
"average_popularity": 47,
"time_label": "5 PM"
},
{
"hour_of_day": 15,
"average_popularity": 40.833333333333336,
"time_label": "3 PM"
}
],
"popular_times": {
"Monday": [
{
"hour_of_day": 5,
"time_label": "5 AM",
"popularity_percentage": 0,
"popularity_description": "Idle"
},
{
"hour_of_day": 6,
"time_label": "6 AM",
"popularity_percentage": 22,
"popularity_description": "Usually not too busy"
},
{
"hour_of_day": 7,
"time_label": "7 AM",
"popularity_percentage": 13,
"popularity_description": "Usually not busy"
},
{
"hour_of_day": 8,
"time_label": "8 AM",
"popularity_percentage": 15,
"popularity_description": "Usually not busy"
},
{
"hour_of_day": 9,
"time_label": "9 AM",
"popularity_percentage": 15,
"popularity_description": "Usually not busy"
},
{
"hour_of_day": 10,
"time_label": "10 AM",
"popularity_percentage": 27,
"popularity_description": "Usually not too busy"
},
{
"hour_of_day": 11,
"time_label": "11 AM",
"popularity_percentage": 38,
"popularity_description": "Usually not too busy"
},
{
"hour_of_day": 12,
"time_label": "12 PM",
"popularity_percentage": 40,
"popularity_description": "Usually not too busy"
},
{
"hour_of_day": 13,
"time_label": "1 PM",
"popularity_percentage": 36,
"popularity_description": "Usually not too busy"
},
{
"hour_of_day": 14,
"time_label": "2 PM",
"popularity_percentage": 50,
"popularity_description": "Usually not too busy"
},
{
"hour_of_day": 15,
"time_label": "3 PM",
"popularity_percentage": 79,
"popularity_description": "Usually a little busy"
},
{
"hour_of_day": 16,
"time_label": "4 PM",
"popularity_percentage": 100,
"popularity_description": "Usually as busy as it gets"
},
{
"hour_of_day": 17,
"time_label": "5 PM",
"popularity_percentage": 88,
"popularity_description": "Usually as busy as it gets"
},
{
"hour_of_day": 18,
"time_label": "6 PM",
"popularity_percentage": 65,
"popularity_description": "Usually a little busy"
},
{
"hour_of_day": 19,
"time_label": "7 PM",
"popularity_percentage": 40,
"popularity_description": "Usually not too busy"
},
{
"hour_of_day": 20,
"time_label": "8 PM",
"popularity_percentage": 27,
"popularity_description": "Usually not too busy"
},
{
"hour_of_day": 21,
"time_label": "9 PM",
"popularity_percentage": 0,
"popularity_description": "Idle"
},
{
"hour_of_day": 22,
"time_label": "10 PM",
"popularity_percentage": 0,
"popularity_description": "Idle"
}
],
"Tuesday": [
{
"hour_of_day": 6,
"time_label": "6 AM",
"popularity_percentage": 0,
"popularity_description": "Idle"
},
{
"hour_of_day": 7,
"time_label": "7 AM",
"popularity_percentage": 0,
"popularity_description": "Idle"
},
{
"hour_of_day": 8,
"time_label": "8 AM",
"popularity_percentage": 0,
"popularity_description": "Idle"
},
{
"hour_of_day": 9,
"time_label": "9 AM",
"popularity_percentage": 0,
"popularity_description": "Idle"
},
{
"hour_of_day": 10,
"time_label": "10 AM",
"popularity_percentage": 36,
"popularity_description": "Usually not too busy"
},
{
"hour_of_day": 11,
"time_label": "11 AM",
"popularity_percentage": 40,
"popularity_description": "Usually not too busy"
},
{
"hour_of_day": 12,
"time_label": "12 PM",
"popularity_percentage": 29,
"popularity_description": "Usually not too busy"
},
{
"hour_of_day": 13,
"time_label": "1 PM",
"popularity_percentage": 20,
"popularity_description": "Usually not too busy"
},
{
"hour_of_day": 14,
"time_label": "2 PM",
"popularity_percentage": 22,
"popularity_description": "Usually not too busy"
},
{
"hour_of_day": 15,
"time_label": "3 PM",
"popularity_percentage": 31,
"popularity_description": "Usually not too busy"
},
{
"hour_of_day": 16,
"time_label": "4 PM",
"popularity_percentage": 45,
"popularity_description": "Usually not too busy"
},
{
"hour_of_day": 17,
"time_label": "5 PM",
"popularity_percentage": 52,
"popularity_description": "Usually a little busy"
},
{
"hour_of_day": 18,
"time_label": "6 PM",
"popularity_percentage": 47,
"popularity_description": "Usually not too busy"
},
{
"hour_of_day": 19,
"time_label": "7 PM",
"popularity_percentage": 43,
"popularity_description": "Usually not too busy"
},
{
"hour_of_day": 20,
"time_label": "8 PM",
"popularity_percentage": 27,
"popularity_description": "Usually not too busy"
},
{
"hour_of_day": 21,
"time_label": "9 PM",
"popularity_percentage": 0,
"popularity_description": "Idle"
},
{
"hour_of_day": 22,
"time_label": "10 PM",
"popularity_percentage": 0,
"popularity_description": "Idle"
},
{
"hour_of_day": 23,
"time_label": "11 PM",
"popularity_percentage": 0,
"popularity_description": "Idle"
}
],
"Wednesday": [
{
"hour_of_day": 5,
"time_label": "5 AM",
"popularity_percentage": 0,
"popularity_description": "Idle"
},
{
"hour_of_day": 6,
"time_label": "6 AM",
"popularity_percentage": 20,
"popularity_description": "Usually not too busy"
},
{
"hour_of_day": 7,
"time_label": "7 AM",
"popularity_percentage": 20,
"popularity_description": "Usually not too busy"
},
{
"hour_of_day": 8,
"time_label": "8 AM",
"popularity_percentage": 18,
"popularity_description": "Usually not busy"
},
{
"hour_of_day": 9,
"time_label": "9 AM",
"popularity_percentage": 18,
"popularity_description": "Usually not busy"
},
{
"hour_of_day": 10,
"time_label": "10 AM",
"popularity_percentage": 27,
"popularity_description": "Usually not too busy"
},
{
"hour_of_day": 11,
"time_label": "11 AM",
"popularity_percentage": 27,
"popularity_description": "Usually not too busy"
},
{
"hour_of_day": 12,
"time_label": "12 PM",
"popularity_percentage": 29,
"popularity_description": "Usually not too busy"
},
{
"hour_of_day": 13,
"time_label": "1 PM",
"popularity_percentage": 25,
"popularity_description": "Usually not too busy"
},
{
"hour_of_day": 14,
"time_label": "2 PM",
"popularity_percentage": 29,
"popularity_description": "Usually not too busy"
},
{
"hour_of_day": 15,
"time_label": "3 PM",
"popularity_percentage": 40,
"popularity_description": "Usually not too busy"
},
{
"hour_of_day": 16,
"time_label": "4 PM",
"popularity_percentage": 45,
"popularity_description": "Usually not too busy"
},
{
"hour_of_day": 17,
"time_label": "5 PM",
"popularity_percentage": 47,
"popularity_description": "Usually not too busy"
},
{
"hour_of_day": 18,
"time_label": "6 PM",
"popularity_percentage": 38,
"popularity_description": "Usually not too busy"
},
{
"hour_of_day": 19,
"time_label": "7 PM",
"popularity_percentage": 27,
"popularity_description": "Usually not too busy"
},
{
"hour_of_day": 20,
"time_label": "8 PM",
"popularity_percentage": 20,
"popularity_description": "Usually not too busy"
},
{
"hour_of_day": 21,
"time_label": "9 PM",
"popularity_percentage": 0,
"popularity_description": "Idle"
},
{
"hour_of_day": 22,
"time_label": "10 PM",
"popularity_percentage": 0,
"popularity_description": "Idle"
}
],
"Thursday": [
{
"hour_of_day": 6,
"time_label": "6 AM",
"popularity_percentage": 0,
"popularity_description": "Idle"
},
{
"hour_of_day": 7,
"time_label": "7 AM",
"popularity_percentage": 0,
"popularity_description": "Idle"
},
{
"hour_of_day": 8,
"time_label": "8 AM",
"popularity_percentage": 0,
"popularity_description": "Idle"
},
{
"hour_of_day": 9,
"time_label": "9 AM",
"popularity_percentage": 0,
"popularity_description": "Idle"
},
{
"hour_of_day": 10,
"time_label": "10 AM",
"popularity_percentage": 29,
"popularity_description": "Usually not too busy"
},
{
"hour_of_day": 11,
"time_label": "11 AM",
"popularity_percentage": 27,
"popularity_description": "Usually not too busy"
},
{
"hour_of_day": 12,
"time_label": "12 PM",
"popularity_percentage": 25,
"popularity_description": "Usually not too busy"
},
{
"hour_of_day": 13,
"time_label": "1 PM",
"popularity_percentage": 29,
"popularity_description": "Usually not too busy"
},
{
"hour_of_day": 14,
"time_label": "2 PM",
"popularity_percentage": 40,
"popularity_description": "Usually not too busy"
},
{
"hour_of_day": 15,
"time_label": "3 PM",
"popularity_percentage": 50,
"popularity_description": "Usually not too busy"
},
{
"hour_of_day": 16,
"time_label": "4 PM",
"popularity_percentage": 50,
"popularity_description": "Usually not too busy"
},
{
"hour_of_day": 17,
"time_label": "5 PM",
"popularity_percentage": 43,
"popularity_description": "Usually not too busy"
},
{
"hour_of_day": 18,
"time_label": "6 PM",
"popularity_percentage": 36,
"popularity_description": "Usually not too busy"
},
{
"hour_of_day": 19,
"time_label": "7 PM",
"popularity_percentage": 27,
"popularity_description": "Usually not too busy"
},
{
"hour_of_day": 20,
"time_label": "8 PM",
"popularity_percentage": 20,
"popularity_description": "Usually not too busy"
},
{
"hour_of_day": 21,
"time_label": "9 PM",
"popularity_percentage": 0,
"popularity_description": "Idle"
},
{
"hour_of_day": 22,
"time_label": "10 PM",
"popularity_percentage": 0,
"popularity_description": "Idle"
},
{
"hour_of_day": 23,
"time_label": "11 PM",
"popularity_percentage": 0,
"popularity_description": "Idle"
}
],
"Friday": [
{
"hour_of_day": 5,
"time_label": "5 AM",
"popularity_percentage": 0,
"popularity_description": "Idle"
},
{
"hour_of_day": 6,
"time_label": "6 AM",
"popularity_percentage": 25,
"popularity_description": "Usually not too busy"
},
{
"hour_of_day": 7,
"time_label": "7 AM",
"popularity_percentage": 15,
"popularity_description": "Usually not busy"
},
{
"hour_of_day": 8,
"time_label": "8 AM",
"popularity_percentage": 22,
"popularity_description": "Usually not too busy"
},
{
"hour_of_day": 9,
"time_label": "9 AM",
"popularity_percentage": 27,
"popularity_description": "Usually not too busy"
},
{
"hour_of_day": 10,
"time_label": "10 AM",
"popularity_percentage": 52,
"popularity_description": "Usually a little busy"
},
{
"hour_of_day": 11,
"time_label": "11 AM",
"popularity_percentage": 43,
"popularity_description": "Usually not too busy"
},
{
"hour_of_day": 12,
"time_label": "12 PM",
"popularity_percentage": 38,
"popularity_description": "Usually not too busy"
},
{
"hour_of_day": 13,
"time_label": "1 PM",
"popularity_percentage": 25,
"popularity_description": "Usually not too busy"
},
{
"hour_of_day": 14,
"time_label": "2 PM",
"popularity_percentage": 27,
"popularity_description": "Usually not too busy"
},
{
"hour_of_day": 15,
"time_label": "3 PM",
"popularity_percentage": 45,
"popularity_description": "Usually not too busy"
},
{
"hour_of_day": 16,
"time_label": "4 PM",
"popularity_percentage": 54,
"popularity_description": "Usually a little busy"
},
{
"hour_of_day": 17,
"time_label": "5 PM",
"popularity_percentage": 52,
"popularity_description": "Usually a little busy"
},
{
"hour_of_day": 18,
"time_label": "6 PM",
"popularity_percentage": 34,
"popularity_description": "Usually not too busy"
},
{
"hour_of_day": 19,
"time_label": "7 PM",
"popularity_percentage": 0,
"popularity_description": "Idle"
},
{
"hour_of_day": 20,
"time_label": "8 PM",
"popularity_percentage": 0,
"popularity_description": "Idle"
},
{
"hour_of_day": 21,
"time_label": "9 PM",
"popularity_percentage": 0,
"popularity_description": "Idle"
},
{
"hour_of_day": 22,
"time_label": "10 PM",
"popularity_percentage": 0,
"popularity_description": "Idle"
}
],
"Saturday": [
{
"hour_of_day": 6,
"time_label": "6 AM",
"popularity_percentage": 0,
"popularity_description": "Idle"
},
{
"hour_of_day": 7,
"time_label": "7 AM",
"popularity_percentage": 0,
"popularity_description": "Idle"
},
{
"hour_of_day": 8,
"time_label": "8 AM",
"popularity_percentage": 0,
"popularity_description": "Idle"
},
{
"hour_of_day": 9,
"time_label": "9 AM",
"popularity_percentage": 47,
"popularity_description": "Usually not too busy"
},
{
"hour_of_day": 10,
"time_label": "10 AM",
"popularity_percentage": 52,
"popularity_description": "Usually a little busy"
},
{
"hour_of_day": 11,
"time_label": "11 AM",
"popularity_percentage": 56,
"popularity_description": "Usually a little busy"
},
{
"hour_of_day": 12,
"time_label": "12 PM",
"popularity_percentage": 38,
"popularity_description": "Usually not too busy"
},
{
"hour_of_day": 13,
"time_label": "1 PM",
"popularity_percentage": 0,
"popularity_description": "Idle"
},
{
"hour_of_day": 14,
"time_label": "2 PM",
"popularity_percentage": 0,
"popularity_description": "Idle"
},
{
"hour_of_day": 15,
"time_label": "3 PM",
"popularity_percentage": 0,
"popularity_description": "Idle"
},
{
"hour_of_day": 16,
"time_label": "4 PM",
"popularity_percentage": 0,
"popularity_description": "Idle"
},
{
"hour_of_day": 17,
"time_label": "5 PM",
"popularity_percentage": 0,
"popularity_description": "Idle"
},
{
"hour_of_day": 18,
"time_label": "6 PM",
"popularity_percentage": 0,
"popularity_description": "Idle"
},
{
"hour_of_day": 19,
"time_label": "7 PM",
"popularity_percentage": 0,
"popularity_description": "Idle"
},
{
"hour_of_day": 20,
"time_label": "8 PM",
"popularity_percentage": 0,
"popularity_description": "Idle"
},
{
"hour_of_day": 21,
"time_label": "9 PM",
"popularity_percentage": 0,
"popularity_description": "Idle"
},
{
"hour_of_day": 22,
"time_label": "10 PM",
"popularity_percentage": 0,
"popularity_description": "Idle"
},
{
"hour_of_day": 23,
"time_label": "11 PM",
"popularity_percentage": 0,
"popularity_description": "Idle"
}
]
}
},
{
"name": "Fred Villari's Studios of Self Defense Karate Kung Fu Jiu Jitsu",
"place_id": "ChIJi0qMXA3qwoARWj9NNLIQOcQ",
"rating": 4.8,
"reviews": 18,
"phone": "(818) 957-7544",
"website": "http://www.villariglendale.com/",
"address": "Fred Villari's Studios of Self Defense Karate Kung Fu Jiu Jitsu, 3601 Ocean View Blvd, Glendale, CA 91208",
"main_category": "Martial arts school",
"coordinates": {
"latitude": 34.2050038,
"longitude": -118.22820809999999
},
"featured_image": "https://lh3.googleusercontent.com/gps-cs-s/APNQkAG7uLMqcUvWcJGs-xUHR3OY_Inlgv4meYE5FCbcUt5hi9xX6gASGS1NHO1LydBYxaxHXuTIljbP9jGhq2zuqLN4dvI-yWWMUnbLTBTvHsWbzjthZndgWKa8ybVKtMIp6eTEtWdC9Z7Vq5e6=w408-h883-k-no",
"link": "https://www.google.com/maps/place/Fred+Villari%E2%80%99s+Studios+of+Self+Defense+Karate+Kung+Fu+Jiu+Jitsu/data=!4m7!3m6!1s0x80c2ea0d5c8c4a8b:0xc43910b2344d3f5a!8m2!3d34.2050038!4d-118.22820809999999!16s%2Fg%2F1tgh37mv!19sChIJi0qMXA3qwoARWj9NNLIQOcQ?authuser=0&hl=en&rclk=1",
"hours_list": [
{
"day": "Friday",
"times": [
"Closed"
]
}
],
"status": null,
"plus_code": "6Q4C+2P Glendale, California",
"price_range": null,
"description": "Fred Villari's Studios of Self Defense is a martial arts school dedicated to teaching effective self-defense through a unique system developed by Grandmaster Fred Villari. This system is a comprehensive blend of various styles, including Shaolin Kempo Karate, Kung Fu and Jui Jitsu focusing not only on physical training but also on personal growth and mental fortitude.\n\n* All levels welcome\n\n* A full accountability system\n\n* A global community\n\n* A War on Weakness mindset\n\nThis is the future of wellness -- simple, powerful, and accessible to every human on the planet.",
"is_spending_on_ads": false,
"cid": "14139350862674083674",
"competitors": [
{
"name": "Bejanian Martial Arts",
"link": "https://www.google.com/maps/search/Bejanian+Martial+Arts/@34.1464654,-118.24514149999999?authuser=0&hl=en&entry=ttu",
"reviews": 145,
"rating": 4.9,
"main_category": {
"38": [
[
[
null,
null,
null,
null,
null,
null,
[
"https://lh3.googleusercontent.com/gps-cs-s/APNQkAFvD0NWi2Kiovbcmuz0D0J5UIawzkQOzu29fXOi7Fj6Kp3_Fgb4koF4beIZNoKA8TqI6nczUkoAf5XUMDFgI1Zdgyi2WxEozgRw_T7lCCtW37BFr7wNe_F7LSzsqxZfznglcVS1rQ=w156-h156-n-k-no",
null,
null,
[
156,
156
]
],
null,
null,
"UA01apKEJcq5mtkP79K9oQc",
"0ahUKEwiS7KyTgJOVAxXKnCYFHW9pL3QQzCcIZCgA"
]
],
null,
null,
"UA01apKEJcq5mtkP79K9oQc"
],
"107": "Martial arts school"
}
},
{
"name": "Gracie Barra Glendale",
"link": "https://www.google.com/maps/search/Gracie+Barra+Glendale/@34.1422817,-118.25099599999999?authuser=0&hl=en&entry=ttu",
"reviews": 50,
"rating": 4.9,
"main_category": {
"38": [
[
[
null,
null,
null,
null,
null,
null,
[
"https://lh3.googleusercontent.com/gps-cs-s/APNQkAEPPqwRz4rkK2uv-GLe-mgAYue4dKIyLvsPeE6W_kqECgUS5ytQcPPvss2FYU4g3sT6kFPbpBwdGH4bcC8ZY0vsWQZP-m6IXbOtW0FU-MvsDbeNihmUVirWZtOpG1vQRcNTg4XJlQ=w156-h156-n-k-no",
null,
null,
[
156,
156
]
],
null,
null,
"UA01apKEJcq5mtkP79K9oQc",
"0ahUKEwiS7KyTgJOVAxXKnCYFHW9pL3QQzCcIXygA"
]
],
null,
null,
"UA01apKEJcq5mtkP79K9oQc"
],
"107": "Martial arts school"
}
},
{
"name": "Z-Ultimate Self Defense Studios",
"link": "https://www.google.com/maps/search/Z-Ultimate+Self+Defense+Studios/@34.2015271,-118.19430240000001?authuser=0&hl=en&entry=ttu",
"reviews": 25,
"rating": 5,
"main_category": {
"38": [
[
[
null,
null,
null,
null,
null,
null,
[
"https://lh3.googleusercontent.com/gps-cs-s/APNQkAEce5RS8KOimxT7x6md7T_9zU6m8VW5D6uTAIEMX2HB0PkfgD6lnwDeck7Q5YFU2oBheRaNCawFKt2TdMg5G0WEnyCaA_O0iinDrpeZ7Z6I4fb7VOmnVV6FmTmsZ_NycrHDLD8kxPE8ZxZ0=w156-h156-n-k-no",
null,
null,
[
156,
156
]
],
null,
null,
"UA01apKEJcq5mtkP79K9oQc",
"0ahUKEwiS7KyTgJOVAxXKnCYFHW9pL3QQzCcIaSgA"
]
],
null,
null,
"UA01apKEJcq5mtkP79K9oQc"
],
"107": "Martial arts school"
}
},
{
"name": "Villari's Martial Arts Center, Duarte",
"link": "https://www.google.com/maps/search/Villari%27s+Martial+Arts+Center%2C+Duarte/@34.1389854,-117.9674873?authuser=0&hl=en&entry=ttu",
"reviews": 7,
"rating": 4.4,
"main_category": {
"38": [
[
[
null,
null,
null,
null,
null,
null,
[
"https://lh3.googleusercontent.com/gps-cs-s/APNQkAGyuAVtHVVlYhoGr_PQXxuSY64Wco0-456b2hFtMHzQXjqfaM6gPo59KvAfI8S9xZkrTow_UUNtO--P6X4iXa9qpl18DyBzyzdLhiWsEt86KxU7xHPQXzrJUMXgunyePp3KFJ4S=w156-h156-n-k-no",
null,
null,
[
156,
156
]
],
null,
null,
"UA01apKEJcq5mtkP79K9oQc",
"0ahUKEwiS7KyTgJOVAxXKnCYFHW9pL3QQzCcIWigA"
]
],
null,
null,
"UA01apKEJcq5mtkP79K9oQc"
],
"107": "Martial arts school"
}
},
{
"name": "Seido Karate Hollywood Dojo",
"link": "https://www.google.com/maps/search/Seido+Karate+Hollywood+Dojo/@34.0985516,-118.34498789999999?authuser=0&hl=en&entry=ttu",
"reviews": 7,
"rating": 4.4,
"main_category": {
"38": [
[
[
null,
null,
null,
null,
null,
null,
[
"https://www.google.com/maps/vt/data=wTs6x420F__fPXWDpruW1Qdb6ql_SEoDD0FAhAQiSEE9gHqNNMAsP-OyA2f9qSkA6Ps-qsabIs-qW82h0-eOwHtWNdNJZHqBI6lg1xEkZNvTGFkA1-EmoVUrX5hst-SymjBhA6nx478j_eOIyZmjuUR-wkJ8blTb",
null,
null,
[
156,
156
]
],
null,
null,
"UA01apKEJcq5mtkP79K9oQc",
"0ahUKEwiS7KyTgJOVAxXKnCYFHW9pL3QQzCcIbigA"
]
],
null,
null,
"UA01apKEJcq5mtkP79K9oQc"
],
"107": "Martial arts school"
}
}
],
"can_claim": false,
"owner": {
"id": "109763546043990388951",
"name": "Fred Villari's Studios of Self Defense Karate Kung Fu Jiu Jitsu (Owner)",
"link": "https://www.google.com/maps/contrib/109763546043990388951"
},
"categories": [
"Martial arts school",
"Jujitsu school",
"Karate school",
"Kickboxing school",
"Kung fu school",
"Self defense school",
"Tai chi school"
],
"workday_timing": "12:30-8:30 PM",
"closed_on": [
"Friday",
"Sunday"
],
"review_keywords": [
{
"keyword": "black belt",
"count": 4
},
{
"keyword": "health",
"count": 3
},
{
"keyword": "confidence",
"count": 3
},
{
"keyword": "teach",
"count": 3
},
{
"keyword": "learn",
"count": 8
},
{
"keyword": "class",
"count": 4
},
{
"keyword": "skills",
"count": 4
},
{
"keyword": "know",
"count": 4
}
],
"reviews_link": "https://search.google.com/local/reviews?placeid=ChIJi0qMXA3qwoARWj9NNLIQOcQ&q=Fred+Villari%E2%80%99s+Studios+of+Self+Defense+Karate+Kung+Fu+Jiu+Jitsu&authuser=0&hl=en&gl=US",
"detailed_address": {
"ward": "Montrose Verdugo City",
"street": "3601 Ocean View Blvd",
"city": "Glendale",
"postal_code": "91208",
"state": "California",
"country_code": "US"
},
"time_zone": "America/Los_Angeles",
"data_id": "0x80c2ea0d5c8c4a8b:0xc43910b2344d3f5a",
"menu": {
"link": "http://villariglendale.com/",
"source": "villariglendale.com"
},
"about": [
{
"id": "service_options",
"name": "Service options",
"options": [
{
"name": "Onsite services",
"enabled": true
},
{
"name": "Online classes",
"enabled": true
}
]
},
{
"id": "accessibility",
"name": "Accessibility",
"options": [
{
"name": "Wheelchair accessible parking lot",
"enabled": true
}
]
},
{
"id": "amenities",
"name": "Amenities",
"options": [
{
"name": "Gender-neutral restroom",
"enabled": true
},
{
"name": "Restroom",
"enabled": true
}
]
},
{
"id": "payments",
"name": "Payments",
"options": [
{
"name": "Checks",
"enabled": true
},
{
"name": "Credit cards",
"enabled": true
},
{
"name": "Debit cards",
"enabled": true
},
{
"name": "NFC mobile payments",
"enabled": true
},
{
"name": "Credit cards",
"enabled": true
}
]
},
{
"id": "children",
"name": "Children",
"options": [
{
"name": "Family discount",
"enabled": true
}
]
},
{
"id": "parking",
"name": "Parking",
"options": [
{
"name": "Free parking lot",
"enabled": true
}
]
}
],
"images": [
{
"about": "All",
"link": "https://lh3.googleusercontent.com/gps-cs-s/APNQkAG7uLMqcUvWcJGs-xUHR3OY_Inlgv4meYE5FCbcUt5hi9xX6gASGS1NHO1LydBYxaxHXuTIljbP9jGhq2zuqLN4dvI-yWWMUnbLTBTvHsWbzjthZndgWKa8ybVKtMIp6eTEtWdC9Z7Vq5e6=w224-h485-k-no"
},
{
"about": "Martial arts",
"link": "https://lh3.googleusercontent.com/gps-cs-s/APNQkAEVXEHGxQEB4q1p8KQ46Yi1-mDzFO5OGbeZzf8viarfL3nSa9W91oRVi81Y7NBD_wxumXFknEDrDu_i0Es_TzU7cB9D1mzPm3uTKtDd4TzX0dYogFsEwZHv82ybkhuEprujJrZm=w224-h398-k-no"
},
{
"about": "Videos",
"link": "https://lh3.googleusercontent.com/gps-cs-s/APNQkAFrB0I3htOjBlsZrTwh0OtPhvw1gt04QHRSQM-yDxebOT0dHYVcRi0yiqIcg5XpAL9SWhixv6NKkj7Jay4jDVGr0balz4gvC_FcECo1hsdbZ88KpQdRmcmu5lYJepxJZwDp_4Q0=w224-h398-k-no"
},
{
"about": "By owner",
"link": "https://lh3.googleusercontent.com/gps-cs-s/APNQkAFRRdQDnbTbjaZ-XffIcIaud6Ak6hGTOdgr2lQx4aUpZ79oqNUW05w_BzYab1Ex_YIusgaAa1QqY9DA2Ue6t3JbDD6swNmBxwd2aJJoGYK12_qniFqOzzmutWvjMO3UidSKcwT-=w224-h298-k-no"
},
{
"about": "Street View & 360deg",
"link": "https://streetviewpixels-pa.googleapis.com/v1/thumbnail?panoid=8o5e-1ymm_JuxbOrnOWKsw&cb_client=maps_sv.tactile.gps&w=224&h=298&yaw=265.2867&pitch=0&thumbfov=100"
}
],
"hours": [
{
"day": "Monday",
"times": [
"12:30-8:30 PM"
]
},
{
"day": "Tuesday",
"times": [
"12:30-8:30 PM"
]
},
{
"day": "Wednesday",
"times": [
"12:30-8:30 PM"
]
},
{
"day": "Thursday",
"times": [
"12:30-8:30 PM"
]
},
{
"day": "Friday",
"times": [
"Closed"
]
},
{
"day": "Saturday",
"times": [
"9 AM-1 PM"
]
},
{
"day": "Sunday",
"times": [
"Closed"
]
}
]
},
{
"name": "Arman's Taekwondo",
"place_id": "ChIJh_KAqEfBwoARlOWURSS8a6I",
"rating": 5,
"reviews": 10,
"phone": "(818) 317-7679",
"website": null,
"address": "Arman's Taekwondo, 1247 E Colorado St, Glendale, CA 91205",
"main_category": "Martial arts school",
"coordinates": {
"latitude": 34.1427974,
"longitude": -118.2376752
},
"featured_image": "https://lh3.googleusercontent.com/gps-cs-s/APNQkAGI8kPOV5w9OooWtWNmr9r5EJC9XNm5XX29yD10t_qJ0hq4Io7_0cqv55dn8tIQUbxdwhZzBlm4A7qN8d2L8ozmSSHNBAw-_BpWzwMNwh3tE7VAghj7z_Gq5TW2eONKxmgO3JEuLQ=w408-h408-k-no",
"link": "https://www.google.com/maps/place/Arman%27s+Taekwondo/data=!4m7!3m6!1s0x80c2c147a880f287:0xa26bbc244594e594!8m2!3d34.1427974!4d-118.2376752!16s%2Fg%2F11g8936fx4!19sChIJh_KAqEfBwoARlOWURSS8a6I?authuser=0&hl=en&rclk=1",
"hours_list": [
{
"day": "Friday",
"times": [
"5-9 PM"
]
}
],
"status": null,
"plus_code": "4QV6+4W Glendale, California",
"price_range": null,
"description": "Martial Arts school for all ages",
"is_spending_on_ads": false,
"cid": "11703654920624596372",
"competitors": [
{
"name": "Yeremyan's Taekwondo Club",
"link": "https://www.google.com/maps/search/Yeremyan%27s+Taekwondo+Club/@34.150561499999995,-118.23645069999999?authuser=0&hl=en&entry=ttu",
"reviews": 175,
"rating": 5,
"main_category": {
"38": [
[
[
null,
null,
null,
null,
null,
null,
[
"https://lh3.googleusercontent.com/gps-cs-s/APNQkAG5Slppb4o5E_LN3013MCnx7GS-Z8riQEnO_CqohWeob3rNGVs-L9qqlAgAl-VM0R8le1k8v683ZUB21wYT5Y-UQOZEAVl40zJPzPCQPdjRvSJXnh5biLnj2G8pjRkplg3a6S55=w156-h156-n-k-no",
null,
null,
[
156,
156
]
],
null,
null,
"UA01auCuKsCzmtkP2ODwmAY",
"0ahUKEwjglrKTgJOVAxXAmSYFHVgwHGMQzCcIaCgA"
]
],
null,
null,
"UA01auCuKsCzmtkP2ODwmAY"
],
"107": "Martial arts school"
}
},
{
"name": "Bejanian Martial Arts",
"link": "https://www.google.com/maps/search/Bejanian+Martial+Arts/@34.1464654,-118.24514149999999?authuser=0&hl=en&entry=ttu",
"reviews": 145,
"rating": 4.9,
"main_category": {
"38": [
[
[
null,
null,
null,
null,
null,
null,
[
"https://lh3.googleusercontent.com/gps-cs-s/APNQkAFvD0NWi2Kiovbcmuz0D0J5UIawzkQOzu29fXOi7Fj6Kp3_Fgb4koF4beIZNoKA8TqI6nczUkoAf5XUMDFgI1Zdgyi2WxEozgRw_T7lCCtW37BFr7wNe_F7LSzsqxZfznglcVS1rQ=w156-h156-n-k-no",
null,
null,
[
156,
156
]
],
null,
null,
"UA01auCuKsCzmtkP2ODwmAY",
"0ahUKEwjglrKTgJOVAxXAmSYFHVgwHGMQzCcIbSgA"
]
],
null,
null,
"UA01auCuKsCzmtkP2ODwmAY"
],
"107": "Martial arts school"
}
},
{
"name": "K Taekwondo - Glendale",
"link": "https://www.google.com/maps/search/K+Taekwondo+-+Glendale/@34.1424612,-118.2325087?authuser=0&hl=en&entry=ttu",
"reviews": 64,
"rating": 5,
"main_category": {
"38": [
[
[
null,
null,
null,
null,
null,
null,
[
"https://lh3.googleusercontent.com/gps-cs-s/APNQkAH4_NISp1vbYSrDPAXKBvXwMvBJUhnnUgx5u3WFM3MxJID8cXLFotDuSVxKi7mSNGy7kB9-u5LyXcsk5nJiALQiny-x7VlzkHB0xaPdZD_P8JPGyweDnv5KEpxUimUaqm8ZTADf=w156-h156-n-k-no",
null,
null,
[
156,
156
]
],
null,
null,
"UA01auCuKsCzmtkP2ODwmAY",
"0ahUKEwjglrKTgJOVAxXAmSYFHVgwHGMQzCcIYygA"
]
],
null,
null,
"UA01auCuKsCzmtkP2ODwmAY"
],
"107": "Taekwondo school"
}
},
{
"name": "K Taekwondo - Pasadena",
"link": "https://www.google.com/maps/search/K+Taekwondo+-+Pasadena/@34.1458307,-118.11414239999999?authuser=0&hl=en&entry=ttu",
"reviews": 50,
"rating": 4.9,
"main_category": {
"38": [
[
[
null,
null,
null,
null,
null,
null,
[
"https://lh3.googleusercontent.com/gps-cs-s/APNQkAGmphlPK4ZykqD7mtDqR3UG5tbwTwXGHn88tYfuu2g9g76v4SRpVGaXvLatkDO0tKk7jWnoH0OTTag-KzN5u03K9JggTOyzx95qhgQWUbVKDxiLIRTnPj2oJqoaSK6H-yofEu7T=w156-h156-n-k-no",
null,
null,
[
156,
156
]
],
null,
null,
"UA01auCuKsCzmtkP2ODwmAY",
"0ahUKEwjglrKTgJOVAxXAmSYFHVgwHGMQzCcIcigA"
]
],
null,
null,
"UA01auCuKsCzmtkP2ODwmAY"
],
"107": "Taekwondo school"
}
},
{
"name": "Shaunt Bejanian Karate",
"link": "https://www.google.com/maps/search/Shaunt+Bejanian+Karate/@34.1371897,-118.2572534?authuser=0&hl=en&entry=ttu",
"reviews": 13,
"rating": 5,
"main_category": {
"38": [
[
[
null,
null,
null,
null,
null,
null,
[
"https://lh3.googleusercontent.com/gps-cs-s/APNQkAEqQ35yhn2cZrRbPWW_fwoFJk35321-FmOpPJPzJGLxnSU311YRfTBTq5NO22mEOEGZUvBZwXphaKReir0kMuC4p27EbN5aPVwFa_Sv1ZVG9qJna5RxjZqloZPHKn6bnzsHXC6A=w156-h156-n-k-no",
null,
null,
[
156,
156
]
],
null,
null,
"UA01auCuKsCzmtkP2ODwmAY",
"0ahUKEwjglrKTgJOVAxXAmSYFHVgwHGMQzCcIdygA"
]
],
null,
null,
"UA01auCuKsCzmtkP2ODwmAY"
],
"107": "Martial arts school"
}
}
],
"can_claim": false,
"owner": {
"id": "103863666742614620005",
"name": "Arman's Taekwondo (Owner)",
"link": "https://www.google.com/maps/contrib/103863666742614620005"
},
"categories": [
"Martial arts school"
],
"workday_timing": "5-9 PM",
"closed_on": [
"Tuesday",
"Thursday",
"Saturday",
"Sunday"
],
"reviews_link": "https://search.google.com/local/reviews?placeid=ChIJh_KAqEfBwoARlOWURSS8a6I&q=Arman's+Taekwondo&authuser=0&hl=en&gl=US",
"detailed_address": {
"ward": "Citrus Grove",
"street": "1247 E Colorado St",
"city": "Glendale",
"postal_code": "91205",
"state": "California",
"country_code": "US"
},
"time_zone": "America/Los_Angeles",
"data_id": "0x80c2c147a880f287:0xa26bbc244594e594",
"about": [
{
"id": "accessibility",
"name": "Accessibility",
"options": [
{
"name": "Wheelchair accessible parking lot",
"enabled": true
}
]
},
{
"id": "amenities",
"name": "Amenities",
"options": [
{
"name": "Restroom",
"enabled": true
}
]
}
],
"images": [
{
"about": "All",
"link": "https://lh3.googleusercontent.com/gps-cs-s/APNQkAGI8kPOV5w9OooWtWNmr9r5EJC9XNm5XX29yD10t_qJ0hq4Io7_0cqv55dn8tIQUbxdwhZzBlm4A7qN8d2L8ozmSSHNBAw-_BpWzwMNwh3tE7VAghj7z_Gq5TW2eONKxmgO3JEuLQ=w298-h298-k-no"
},
{
"about": "Martial arts",
"link": "https://lh3.googleusercontent.com/gps-cs-s/APNQkAGI8kPOV5w9OooWtWNmr9r5EJC9XNm5XX29yD10t_qJ0hq4Io7_0cqv55dn8tIQUbxdwhZzBlm4A7qN8d2L8ozmSSHNBAw-_BpWzwMNwh3tE7VAghj7z_Gq5TW2eONKxmgO3JEuLQ=w298-h298-k-no"
},
{
"about": "By owner",
"link": "https://lh3.googleusercontent.com/gps-cs-s/APNQkAG08XdPHrIDNXsz5pjAA1NSyyP9j2wyx60buYG0GZm5Cy_Au1nXHAy4NaV6pAuzASBsQ_5kOshj0kHv6Ju7ROkiQ2jSybbw7F5XTjukMqZWWoHPGvnhr6qU4bNvR61_MPATuL5b=w242-h298-k-no"
},
{
"about": "Street View & 360deg",
"link": "https://streetviewpixels-pa.googleapis.com/v1/thumbnail?panoid=wzvcFjj7TYoXXtPH5-Lm6g&cb_client=maps_sv.tactile.gps&w=224&h=298&yaw=20.928177&pitch=89.47135&thumbfov=100"
}
],
"hours": [
{
"day": "Monday",
"times": [
"5-9 PM"
]
},
{
"day": "Tuesday",
"times": [
"Closed"
]
},
{
"day": "Wednesday",
"times": [
"5-9 PM"
]
},
{
"day": "Thursday",
"times": [
"Closed"
]
},
{
"day": "Friday",
"times": [
"5-9 PM"
]
},
{
"day": "Saturday",
"times": [
"Closed"
]
},
{
"day": "Sunday",
"times": [
"Closed"
]
}
]
},
{
"name": "OLYMP FIGHT CLUB",
"place_id": "ChIJ9Vw8NP_BwoARQxftNmlNCW4",
"rating": 4.9,
"reviews": 126,
"phone": "(747) 377-8888",
"website": "https://www.olympfightclub.com/",
"address": "OLYMP FIGHT CLUB, 1109 S Central Ave, Glendale, CA 91204",
"main_category": "Martial arts club",
"coordinates": {
"latitude": 34.1330521,
"longitude": -118.2580497
},
"featured_image": "https://lh3.googleusercontent.com/gps-cs-s/APNQkAErVI2zZPcw6KieihW73vXm5rOWyBWyv4A5nLG8xnAwzxIm-8VM53pIewnslIiASSpArKX_NokhCB-oL2vUQK5U6UCBcCtFWUf1VOasB0y9YNcI-ViNA5JWmr7ARrboSIiGKOBskvNaLPfr=w454-h240-k-no",
"link": "https://www.google.com/maps/place/OLYMP+FIGHT+CLUB/data=!4m7!3m6!1s0x80c2c1ff343c5cf5:0x6e094d6936ed1743!8m2!3d34.1330521!4d-118.2580497!16s%2Fg%2F11rwlvhns8!19sChIJ9Vw8NP_BwoARQxftNmlNCW4?authuser=0&hl=en&rclk=1",
"hours_list": [
{
"day": "Friday",
"times": [
"9 AM-10 PM"
]
}
],
"status": null,
"plus_code": "4PMR+6Q Glendale, California",
"price_range": null,
"description": "We're a professional fight club in LA that combines the art of Judo, Sambo, and Jiu-Jitsu into a fun way to stay fit, get stronger, and learn how to defend yourself in any situation.\nPresented by world-renowned fighter and instructor, Aram Grigorian, our martial arts classes for kids (and adults!) are fast-paced and filled with awesome exercises, moves, and techniques.\nSensei Aram Grigorian is a Jiu Jitsu World Champion, five times USA Judo Nationals Champion, and Sambo European champion.\nMoreover, Olymp Fight Club is the number one Judo club in USA. Olymp Fight Club got 1st place in 2022 Judo Presidential's Cup and Judo Winter Nationals Championship.",
"is_spending_on_ads": false,
"cid": "7928953733250881347",
"competitors": [
{
"name": "Muay Thai Kickboxing Gym",
"link": "https://www.google.com/maps/search/Muay+Thai+Kickboxing+Gym/@34.1482089,-118.25545539999999?authuser=0&hl=en&entry=ttu",
"reviews": 464,
"rating": 4.9,
"main_category": {
"38": [
[
[