Google Maps locations and businesses | Cheapest API API: como usar a API com a chave de API gratuita | RapidAPI (2024)

LEIA-ME

Google Maps locations and businesses | Cheapest API Documentation

This API documentation describes parameters available for the Google Maps locations and businesses | Cheapest API, a powerful tool for extracting data from Google Maps locations and businesses.

Overview

The Google Maps locations and businesses | Cheapest API allows you to retrieve detailed information about Google Maps places, including:

  • Reviews: Extract reviews, including text, rating, date, author, and more.
  • Images: Obtain images associated with the place, including author information (optional).
  • Contact Information: Get contact details like phone number, website, and email address (if available).
  • Opening Hours: Retrieve daily operating hours for the place.
  • Location: Access address, coordinates, and neighborhood data.
  • Popular Times: Get insights into the busiest times for the place.
  • Prices: Obtain information about price ranges and other pricing details (if available).
  • Categories: Retrieve the primary and secondary categories assigned to the place.

Request Body:

The request body should be a JSON object containing the input parameters for the scraper. Refer to the inputSchema below for a detailed description of each parameter.

{ "searchStringsArray": [ "restaurant", "cafe" ], "locationQuery": "Pittsburgh, PA, USA", "maxCrawledPlacesPerSearch": 100, "language": "en", "maxImages": 10, "scrapeImageAuthors": true, "onlyDataFromSearchPage": false, "includeWebResults": true, "scrapeDirectories": true, "deeperCityScrape": true, "maxReviews": 50, "reviewsStartDate": "2023-01-01", "reviewsSort": "newest", "reviewsFilterString": "delicious food", "scrapeReviewerName": true, "scrapeReviewerId": true, "scrapeReviewerUrl": true, "scrapeReviewId": true, "scrapeReviewUrl": true, "scrapeResponseFromOwnerText": true, "maxQuestions": 10, "zoom": 16, "countryCode": "us", "city": "Pittsburgh", "state": "PA", "county": "", "postalCode": "", "customGeolocation": { "center": [ -79.9959, 40.4406 ], "radius": 1000 }, "categoryFilterWords": [ "restaurant", "cafe" ], "searchMatching": "all", "placeMinimumStars": "four", "skipClosedPlaces": true, "startUrls": [ { "url": "https://www.google.com/maps/search/restaurants+in+Pittsburgh" } ], "allPlacesNoSearchAction": "all_places_no_search_ocr"}

Response:

200 OK

The response will contain a JSON array of scraped data, with each item representing information about a single Google Maps place. The specific fields returned depend on the selected fields parameter in the endpoint URL.

Components

inputSchema

{ "type": "object", "required": [], "properties": { "searchStringsArray": { "title": "🔍 Search term(s)", "type": "array", "description": "Type what you want to search for as you would write it into the Google Maps search bar, e.g. <code>restaurant</code> or <code>pet shelter</code>. The search terms should be unique because each requires the same processing time. Using similar terms is less efficient because of overlap but can slightly increase the capture rate (e.g. <code>bar </code> vs <code>restaurant</code> vs <code>cafe</code>).<br> Putting location directly into search terms, e.g. <code>restaurant Pittsburgh</code>, is not recommended because you will only get max 120 results per search (Google's scrolling limit on a single search) but it can be done for speed. You can also use direct place IDs here in the format <code>place_id:ChIJ8_JBApXMDUcRDzXcYUPTGUY</code>", "items": { "type": "string" } }, "locationQuery": { "title": "📍 Location (only use ONE location at a time)", "type": "string", "description": "Free text location definition. Generally, simpler locations work better, e.g. prefer using city and country, not city, country and state. Use <a href="https://nominatim.openstreetmap.org/ui/search.html">OpenStreeMap webapp</a> for visual validation of the exact covered area. If you use Zip codes, you must use them with country name (not city name!). You can always fallback to Geolocation section where you can select country, state, county, city and postalCode. Keep in mind that Location has always preference of these." }, "maxCrawledPlacesPerSearch": { "title": "Limit the number of places per each search term/URL", "minimum": 1, "type": "integer", "description": "This is the maximum number of results you will obtain for each search term or URL. <br> A higher number will take longer to scrape. If you want to scrape all places available, set this value to <code>9999999</code>. If the number is less than <code>200</code>, <code>deeperCityScrape</code> will be disabled" }, "language": { "title": "Language", "enum": [ "en", "af", "az", "id", "ms", "bs", "ca", "cs", "da", "de", "et", "es", "es-419", "eu", "fil", "fr", "gl", "hr", "zu", "is", "it", "sw", "lv", "lt", "hu", "nl", "no", "uz", "pl", "pt-BR", "pt-PT", "ro", "sq", "sk", "sl", "fi", "sv", "vi", "tr", "el", "bg", "ky", "kk", "mk", "mn", "ru", "sr", "uk", "ka", "hy", "iw", "ur", "ar", "fa", "am", "ne", "hi", "mr", "bn", "pa", "gu", "ta", "te", "kn", "ml", "si", "th", "lo", "my", "km", "ko", "ja", "zh-CN", "zh-TW" ], "type": "string", "description": "Results details will show in this language.", "default": "en" }, "maxImages": { "title": "🖼 Limit number of images (images are very slow)", "minimum": 0, "type": "integer", "description": "Maximum number of images per place. If you fill in '0' or leave the field empty, no images will be scraped. To extract all images, type <code>99999</code> into the field. The higher the number, the slower the search." }, "scrapeImageAuthors": { "title": "🧑‍🎨 Include the image authors (slower)", "type": "boolean", "description": "Include the author name for each image. This will be slower, because it requires to fetch the information for each image individually.", "default": false }, "onlyDataFromSearchPage": { "title": "🔗 I want to scrape only data from search page (no website, phone or contact details)", "type": "boolean", "description": "The results will only show data from the search page, but no other details. This speeds up the scrape significantly. For each place it extracts **ONLY** `isAdvertisem*nt`, `title`, `placeId`, `location`, `address`, `neighborhood`, `street`, `city`, `postalCode`, `state`, `countryCode`, `categoryName`, `categories`, `url`", "default": false }, "includeWebResults": { "title": "🌐 Include \"Web results\"", "type": "boolean", "description": "Extract the bottom \"Web results\" section of place data. It slightly increases compute and proxy usage.", "default": false }, "scrapeDirectories": { "title": "Scrape inside places (e.g. malls)", "type": "boolean", "description": "Some places (e.g. malls) can have multiple places located inside them. Turn this option on to include those places in your results (`onlyDataFromSearchPage` option needs to be disabled in order to scrape directories).", "default": false }, "deeperCityScrape": { "title": "Deeper city scrape (more places extracted)", "type": "boolean", "description": "Enables to extract <b>significantly more places</b> from larger areas because each city inside the region is more focused. It also helps the scraper to skip areas without any population like deserts, mountains or oceans. This is especially important for countries with larger areas without population like Australia or Canada. <br><br> Be aware that enabling this feature increases the runtime (by extracting more places). This feature will likely become a default setting in the near future but is currently opt-in to allow for smooth transition.", "default": false }, "maxReviews": { "title": "Limit number of reviews", "minimum": 0, "type": "integer", "description": "This is the maximum number of reviews per place. If you fill in '0' or leave the field empty, no reviews will be scraped. To extract all reviews, type '99999' into the field. Each output place item can contain maximum 5000 reviews so in case more reviews are extracted, a duplicate place is stored with the next 5000 reviews and so on. Enabling this feature might slow the search down." }, "reviewsStartDate": { "title": "Only scrape reviews newer than [date]", "type": "string", "description": "Visual format only allows YYYY-MM-DD, e.g., <code>2022-02-20</code>. But if you switch to JSON, you can use date with time in ISO format (e.g. <code>2024-05-03T10:00:00</code>) or relative date with number and time unit (e.g. <code>8 days</code> or <code>3 months</code>)." }, "reviewsSort": { "title": "Sort reviews by", "enum": [ "newest", "mostRelevant", "highestRanking", "lowestRanking" ], "type": "string", "description": "Define the order in which reviews should be sorted.", "default": "newest" }, "reviewsFilterString": { "title": "Filter reviews by keyword(s)", "type": "string", "description": "If you fill in a keyword(s), only reviews containing the keyword(s) will be scraped. If you leave the field empty, all reviews will be scraped.", "default": "" }, "scrapeReviewerName": { "title": "Reviewer name", "type": "boolean", "description": "If checked, the scraper will extract the reviewer's name - please, keep in mind the above <b>personal data</b> warning.", "default": true }, "scrapeReviewerId": { "title": "Reviewer ID", "type": "boolean", "description": "", "default": true }, "scrapeReviewerUrl": { "title": "Reviewer URL", "type": "boolean", "description": "", "default": true }, "scrapeReviewId": { "title": "Review ID", "type": "boolean", "description": "", "default": true }, "scrapeReviewUrl": { "title": "Review URL", "type": "boolean", "description": "", "default": true }, "scrapeResponseFromOwnerText": { "title": "Response from owner", "type": "boolean", "description": "", "default": true }, "maxQuestions": { "title": "Max amount of questions to return", "minimum": 0, "type": "integer", "description": "Maximum number of questions per place. If you fill in '0' or leave the field empty, only first question and answer will be scraped. To extract all questions, type <code>999</code> into the field." }, "zoom": { "title": "Override zoom level", "minimum": 1, "maximum": 21, "type": "integer", "description": "You don't need to set this parameter. A good value is chosen automatically based on the chosen location, see <a href="https://apify.com/drobnikj/crawler-google-places#automatic-zooming" target="_blank">readme</a> for more info. Changing the zoom manually may cause the cost to vary significantly." }, "countryCode": { "title": "🗺 Country (combine with other geolocation parameters or the scraper will scan the whole country!)", "enum": [ "", "us", "af", "al", "dz", "as", "ad", "ao", "ai", "aq", "ag", "ar", "am", "aw", "au", "at", "az", "bs", "bh", "bd", "bb", "by", "be", "bz", "bj", "bm", "bt", "bo", "ba", "bw", "bv", "br", "io", "bn", "bg", "bf", "bi", "kh", "cm", "ca", "cv", "ky", "cf", "td", "cl", "cn", "cx", "cc", "co", "km", "cg", "cd", "ck", "cr", "ci", "hr", "cu", "cy", "cz", "dk", "dj", "dm", "do", "ec", "eg", "sv", "gq", "er", "ee", "et", "fk", "fo", "fj", "fi", "fr", "gf", "pf", "tf", "ga", "gm", "ge", "de", "gh", "gi", "gr", "gl", "gd", "gp", "gu", "gt", "gn", "gw", "gy", "ht", "hm", "va", "hn", "hk", "hu", "is", "in", "id", "ir", "iq", "ie", "il", "it", "jm", "jp", "jo", "kz", "ke", "ki", "kp", "kr", "kw", "kg", "la", "lv", "lb", "ls", "lr", "ly", "li", "lt", "lu", "mo", "mk", "mg", "mw", "my", "mv", "ml", "mt", "mh", "mq", "mr", "mu", "yt", "mx", "fm", "md", "mc", "mn", "me", "ms", "ma", "mz", "mm", "na", "nr", "np", "nl", "an", "nc", "nz", "ni", "ne", "ng", "nu", "nf", "mp", "no", "om", "pk", "pw", "ps", "pa", "pg", "py", "pe", "ph", "pn", "pl", "pt", "pr", "qa", "re", "ro", "ru", "rw", "sh", "kn", "lc", "pm", "vc", "ws", "sm", "st", "sa", "sn", "rs", "sc", "sl", "sg", "sk", "si", "sb", "so", "za", "gs", "ss", "es", "lk", "sd", "sr", "sj", "sz", "se", "ch", "sy", "tw", "tj", "tz", "th", "tl", "tg", "tk", "to", "tt", "tn", "tr", "tm", "tc", "tv", "ug", "ua", "ae", "gb", "um", "uy", "uz", "vu", "ve", "vn", "vg", "vi", "wf", "eh", "ye", "zm", "zw" ], "type": "string", "description": "Set the country where the search should be carried out, e.g., <code>United States</code>. <strong> Warning: if used without city or other geolocation parameters, the scraper will scan the whole country!</strong> <br> Currently, the scraper doesn't work well for full-country searching of sparsely populated countries like the United States or Russia. For these, search city by city or focus on populated states." }, "city": { "title": "📍 City (only enter ONE city name, without state or country!)", "type": "string", "description": "Enter the city where the search should be carried out, e.g., <code>Pittsburgh</code>. Warning: just add a single city and don't add state or country here." }, "state": { "title": "State (combine with other geolocation inputs or the scraper will scan the whole state!)", "type": "string", "description": "Set a state where the search should be carried out, e.g. <code>Massachusetts</code> (mainly for US addresses)." }, "county": { "title": "US county (combine with other geolocation inputs or the scraper will scan the whole county!)", "type": "string", "description": "Set the US county where the search should be carried out, e.g., <code>Madison</code>." }, "postalCode": { "title": "Postal code (Enter only ONE postal code. Combine with country, not city.)", "type": "string", "description": "Set the postal code of the area where the search should be carried out, e.g., <code>10001</code>. Select a country as well to ensure the correct postal code is used. <br> Warning: you can only input one postal code at a time." }, "customGeolocation": { "title": "🛰 Custom search area (coordinate order must be: [longitude, latitude])", "type": "object", "description": "Use this field to define the exact search area if other search area parameters don't work for you. See <a href="https://apify.com/compass/crawler-google-places#custom-search-area" target="_blank">readme</a> or <a href="https://blog.apify.com/google-maps-how-to-overcome-google-api-limit-120-places/#📡-level-4-custom-geolocation-in-google-maps-boss-level" target="_blank">our guide</a> for details." },"categoryFilterWords": { "title": "Only selected categories", "type": "array", "description": "You can filter places by categories. It can be a general one, e.g. <code>restaurant</code>, which would accept all places with categories containing <code>restaurant</code> e.g. <code>Mexican restaurant</code>, or it can be more specific, e.g. <code>indian restaurant</code> accepts only places with category <code>Indian restaurant</code>. You can also specify categories only instead of seach terms but you can use both as well. Filtering by categories currently works only for english language. <a href="https://api.apify.com/v2/key-value-stores/epxZwNRgmnzzBpNJd/records/categories">Here</a> you can see list of all supported categories.", "items": { "type": "string", "enum": [ "abbey", "accountant", "acupuncturist", "aeroclub", "airline", "airport", "airstrip", "allergist", "amphitheatre", "anesthesiologist", "anodizer", "appraiser", "aquarium", "arboretum", "architect", "archive", "arena", "artist", "asador", "ashram", "astrologer", "atm", "audiologist", "auditor", "auditorium", "babysitter", "bakery", "band", "bank", "bar", "barrister", "basilica", "bazar", "beach", "beautician", "berufsfachschule", "bistro", "blacksmith", "bookbinder", "bookmaker", "botanica", "boutique", "brewery", "brewpub", "bricklayer", "bridge", "bullring", "cafe", "cafeteria", "camp", "campground", "cannery", "cardiologist", "carpenter", "carpool", "casino", "castle", "cathedral", "cattery", "cemetery", "chalet", "chapel", "charcuterie", "charity", "chiropractor", "choir", "church", "churreria", "circus", "class", "cleaners", "clergyman", "clinic", "club", "coalfield", "college", "confectionery", "congregation", "consultant", "contractor", "conveyancer", "coppersmith", "cottage", "council", "counselor", "creche", "creperie", "dairy", "deli", "dentist", "dermatologist", "dhaba", "diabetologist", "dietitian", "diner", "disco", "distillery", "dj", "doctor", "doula", "dressmaker", "drugstore", "dyeworks", "electrician", "embassy", "endocrinologist", "endodontist", "endoscopist", "engineer", "engraver", "entertainer", "executor", "exhibit", "exporter", "fairground", "farm", "farmstay", "favela", "festival", "florist", "fortress", "foundation", "foundry", "frituur", "garden", "gardener", "gasfitter", "gastroenterologist", "gastropub", "gemologist", "genealogist", "geriatrician", "glazier", "goldsmith", "greenhouse", "gym", "gynecologist", "haberdashery", "hammam", "handicraft", "handyman", "hauptschule", "heliport", "helpline", "hematologist", "hepatologist", "herbalist", "homeopath", "hospice", "hospital", "hostel", "hotel", "hypermarket", "immunologist", "importer", "inn", "intensivist", "internist", "iut", "jeweler", "joiner", "junkyard", "karaoke", "kennel", "kindergarten", "kinesiologist", "kinesiotherapist", "kiosk", "laboratory", "landscaper", "lapidary", "laundromat", "laundry", "lawyer", "leisurecentre", "library", "lido", "liquidator", "locksmith", "lodge", "lodging", "lounge", "lyceum", "magician", "makerspace", "manufacturer", "marae", "marina", "market", "mechanic", "memorial", "meyhane", "midwife", "mill", "mine", "mission", "mohel", "monastery", "mortuary", "mosque", "motel", "musalla", "museum", "musician", "nephrologist", "neurologist", "neurophysiologist", "neuropsychologist", "neurosurgeon", "newsstand", "numerologist", "nunnery", "nutritionist", "observatory", "oilfield", "oncologist", "onsen", "ophthalmologist", "optician", "optometrist", "orchard", "orchestra", "orphanage", "orthodontist", "orthoptist", "osteopath", "otolaryngologist", "pachinko", "pagoda", "painter", "painting", "parapharmacy", "parish", "park", "pathologist", "patisserie", "pediatrician", "pedorthist", "periodontist", "pharmacy", "photographer", "physiatrist", "physiotherapist", "planetarium", "playground", "playgroup", "plumber", "podiatrist", "preschool", "priest", "prison", "proctologist", "promenade", "prosthetics", "prosthodontist", "psychiatrist", "psychic", "psychoanalyst", "psychologist", "psychotherapist", "pub", "publisher", "pulmonologist", "pyrotechnician", "quarry", "radiologist", "radiotherapist", "rafting", "ranch", "realschule", "recruiter", "rectory", "reflexologist", "remodeler", "restaurant", "rheumatologist", "rodeo", "rugby", "sacem", "saddlery", "sailmaker", "sambodrome", "sauna", "scaffolder", "school", "scouting", "sculptor", "sculpture", "seitai", "seminary", "sexologist", "shelter", "shipyard", "shopfitter", "showroom", "shrine", "silversmith", "slaughterhouse", "soapland", "spa", "stable", "stadium", "stage", "statuary", "store", "stylist", "supermarket", "surgeon", "surveyor", "synagogue", "tailor", "tannery", "taxidermist", "toolroom", "translator", "turnery", "university", "urologist", "velodrome", "venereologist", "veterinarian", "villa", "vineyard", "warehouse", "weir", "welder", "wholesaler", "winery", "woodworker", "yakatabune", "yeshiva", "zoo", "aadhar center", "abarth dealer", "abortion clinic", "abrasives supplier", "acai shop", "acaraje restaurant", "accounting firm", "accounting school", "acoustical consultant", "acrylic store", "acupuncture clinic", "acupuncture school", "acura dealer", "administrative attorney", "adoption agency", "adventure sports", "advertising agency", "advertising photographer", "aerial photographer", "aerobics instructor", "aeromodel shop", "aeronautical engineer", "aerospace company", "afghani restaurant", "african restaurant", "agenzia entrate", "aggregate supplier", "agistment service", "agricultural association", "agricultural cooperative", "agricultural engineer", "agricultural organization", "agricultural production", "agricultural service", "agrochemicals supplier", "aikido club", "aikido school", "air taxi", "airbrushing service", "aircraft dealer", "aircraft manufacturer", "airplane exhibit", "alcohol manufacturer", "alliance church", "alsace restaurant", "alternator supplier", "aluminium supplier", "aluminum welder", "aluminum window", "amateur theatre", "ambulance service", "american restaurant", "ammunition supplier", "amusem*nt center", "amusem*nt park", "anago restaurant", "andalusian restaurant", "andhra restaurant", "anganwadi center", "anglican church", "animal hospital", "animal park", "animal shelter", "animation studio", "anime club", "antique store", "apartment building", "apartment complex", "apostolic church", "appliance store", "apprenticeship center", "aquaculture farm", "aquarium shop", "aquatic center", "arab restaurant", "archaeological museum", "archery club", "archery range", "archery store", "architects association", "architectural designer", "architecture firm", "architecture school", "argentinian restaurant", "armenian church", "armenian restaurant", "army base", "army facility", "army museum", "aromatherapy class", "aromatherapy service", "art cafe", "art center", "art dealer", "art gallery", "art museum", "art school", "art studio", "arts organization", "asian restaurant", "asphalt contractor", "assamese restaurant", "assistante maternelle", "asturian restaurant", "athletic club", "athletic field", "athletic park", "athletic track", "atv dealer", "auction house", "audi dealer", "australian restaurant", "austrian restaurant", "auto auction", "auto broker", "auto market", "auto painting", "auto upholsterer", "auto wrecker", "automation company", "aviation consultant", "awadhi restaurant", "awning supplier", "ayurvedic clinic", "azerbaijani restaurant", "baby store", "baden restaurant", "badminton club", "badminton complex", "badminton court", "bag shop", "bagel shop", "bait shop", "bakery equipment", "bakso restaurant", "balinese restaurant", "ballet school", "ballet theater", "balloon artist", "balloon store", "bangladeshi restaurant", "bangle shop", "bankruptcy attorney", "bankruptcy service", "banner store", "banquet hall", "baptist church", "bar pmu", "bar tabac", "barbecue restaurant", "barbecue spots", "barber school", "barber shop", "bariatric surgeon", "bark supplier", "barrel supplier", "bartending school", "baseball club", "baseball field", "basket supplier", "basketball club", "basketball court", "basque restaurant", "batak restaurant", "bathroom remodeler", "battery manufacturer", "battery store", "battery wholesaler", "bavarian restaurant", "bbq area", "beach club", "beach pavillion", "bead store", "bead wholesaler", "bearing supplier", "beauty salon", "beauty school", "bed shop", "bedding store", "beer distributor", "beer garden", "beer hall", "beer store", "belgian restaurant", "belt shop", "bengali restaurant", "bentley dealer", "berry restaurant", "betawi restaurant", "betting agency", "beverage distributor", "bicycle club", "bicycle rack", "bicycle store", "bicycle wholesale", "bike wash", "bilingual school", "bingo hall", "biochemical supplier", "biochemistry lab", "biofeedback therapist", "biotechnology company", "biotechnology engineer", "bird shop", "birth center", "biryani restaurant", "blind school", "blinds shop", "blood bank", "blueprint service", "blues club", "bmw dealer", "bmx club", "bmx park", "bmx track", "boarding house", "boarding school", "boat builder", "boat club", "boat dealer", "boat ramp", "boating instructor", "boiler manufacturer", "boiler supplier", "bonesetting house", "book publisher", "book store", "bookkeeping service", "books wholesaler", "boot camp", "boot store", "border guard", "botanical garden", "bowling alley", "bowling club", "boxing club", "boxing gym", "boxing ring", "bpo company", "brake shop", "branding agency", "brazilian pastelaria", "brazilian restaurant", "breakfast restaurant", "brick manufacturer", "bridal shop", "bridge club", "british restaurant", "brunch restaurant", "buddhist temple", "buffet restaurant", "bugatti dealer", "buick dealer", "building consultant", "building designer", "building firm", "building inspector", "building society", "building surveyor", "bulgarian restaurant", "burmese restaurant", "burrito restaurant", "bus charter", "bus company", "bus depot", "business broker", "business center", "business park", "business school", "butcher shop", "butsudan store", "cabaret club", "cabinet maker", "cabinet store", "cable company", "cadillac dealer", "cajun restaurant", "cake shop", "californian restaurant", "call center", "call shop", "calligraphy lesson", "cambodian restaurant", "camera store", "camping cabin", "camping farm", "camping store", "canadian restaurant", "candle store", "candy store", "cannabis club", "cannabis store", "canoeing area", "cantabrian restaurant", "cantonese restaurant", "capoeira school", "capsule hotel", "car dealer", "car factory", "car manufacturer", "car repair", "car service", "car wash", "carabinieri police", "caribbean restaurant", "carnival club", "carpet installer", "carpet manufacturer", "carpet store", "carpet wholesaler", "carvery restaurant", "casket service", "castilian restaurant", "cat breeder", "cat cafe", "cat trainer", "catalonian restaurant", "catering service", "catholic cathedral", "catholic church", "catholic school", "cattle farm", "cattle market", "caucasian restaurant", "cbse school", "cd store", "ceiling supplier", "cement manufacturer", "cement supplier", "cendol restaurant", "central authority", "central bank", "ceramic manufacturer", "ceramics wholesaler", "certification agency", "chankonabe restaurant", "charter school", "chartered accountant", "cheese manufacturer", "cheese shop", "cheesesteak restaurant", "chemical engineer", "chemical exporter", "chemical manufacturer", "chemical plant", "chemical wholesaler", "chemistry faculty", "chemistry lab", "chesapeake restaurant", "chess club", "chess instructor", "chettinad restaurtant", "chevrolet dealer", "chicken hatchery", "chicken restaurant", "chicken shop", "child psychiatrist", "child psychologist", "childbirth class", "children hall", "children policlinic", "childrens cafe", "childrens club", "childrens farm", "childrens home", "childrens hospital", "childrens library", "childrens museum", "childrens store", "childrens theater", "chilean restaurant", "chimney services", "chimney sweep", "chinaware store", "chinese pastry", "chinese restaurant", "chinese supermarket", "chinese takeaway", "chocolate artisan", "chocolate cafe", "chocolate factory", "chocolate shop", "chop bar", "chophouse restaurant", "christian church", "christian college", "christmas market", "christmas store", "chrysler dealer", "cider bar", "cider mill", "cigar shop", "citroen dealer", "city administration", "city courthouse", "city hall", "city park", "civic center", "civil defence", "civil engineer", "civil police", "civil registry", "clothes market", "clothing store", "clothing supplier", "clothing wholesaler", "cng station", "coaching center", "coal exporter", "coal supplier", "coat wholesaler", "co*cktail bar", "coed school", "coffee roasters", "coffee shop", "coffee stand", "coffee store", "coffee wholesaler", "coffin supplier", "coin dealer", "collectibles store", "colombian restaurant", "comedy club", "comic cafe", "commercial agent", "commercial printer", "commercial refrigeration", "community center", "community college", "community garden", "community school", "company registry", "computer club", "computer consultant", "computer service", "computer store", "computer wholesaler", "concert hall", "concrete contractor", "concrete factory", "condiments supplier", "condominium complex", "confectionery wholesaler", "conference center", "conservation department", "conservative club", "conservative synagogue", "conservatory specialist", "consignment shop", "construction company", "container service", "container supplier", "container terminal", "containers supplier", "continental restaurant", "convenience store", "convention center", "cookie shop", "cooking class", "cooking school", "cooling plant", "cooperative bank", "copper supplier", "copy shop", "copywriting service", "corporate campus", "corporate office", "cosmetic dentist", "cosmetic surgeon", "cosmetics industry", "cosmetics store", "cosmetics wholesaler", "cosplay cafe", "costume store", "cottage rental", "cotton exporter", "cotton mill", "cotton supplier", "countertop contractor", "countertop store", "country club", "country house", "country park", "courier service", "court reporter", "couscous restaurant", "couture store", "coworking space", "craft store", "cramming school", "crane dealer", "crane service", "craniosacral therapy", "credit union", "cremation service", "creole restaurant", "cricket club", "cricket ground", "cricket shop", "croatian restaurant", "crop grower", "croquet club", "cruise agency", "cruise line", "cruise terminal", "crypto atm", "cuban restaurant", "culinary school", "cultural association", "cultural center", "cultural landmark", "cupcake shop", "cupra dealer", "curling club", "curling hall", "curtain store", "custom tailor", "customs broker", "customs consultant", "customs department", "customs office", "customs warehouse", "cutlery store", "cycling park", "czech restaurant", "dacia dealer", "daihatsu dealer", "dairy farm", "dairy store", "dairy supplier", "dance club", "dance company", "dance conservatory", "dance hall", "dance pavillion", "dance restaurant", "dance school", "dance store", "danish restaurant", "dart bar", "dating service", "day spa", "deaf church", "deaf service", "debt collecting", "decal supplier", "deck builder", "delivery service", "demolition contractor", "dental clinic", "dental hygienist", "dental lab", "dental radiology", "dental school", "department store", "desalination plant", "design agency", "design engineer", "design institute", "dessert buffet", "dessert restaurant", "dessert shop", "detention center", "diabetes center", "diagnostic center", "dialysis center", "diamond buyer", "diamond dealer", "diaper service", "digital printer", "dinner theater", "dirt supplier", "discount store", "discount supermarket", "distribution service", "district attorney", "district council", "district justice", "district office", "dive club", "dive shop", "diving center", "diving service", "divorce attorney", "divorce service", "dock builder", "dodge dealer", "dog breeder", "dog cafe", "dog park", "dog trainer", "dog walker", "dojo restaurant", "doll store", "dollar store", "domestic airport", "dominican restaurant", "donations center", "donut shop", "door manufacturer", "door shop", "door supplier", "door warehouse", "drafting service", "drainage service", "drama school", "drama theater", "drawing lessons", "dress shop", "drilling contractor", "driveshaft shop", "driving school", "drone shop", "drum school", "drum store", "dry cleaner", "ducati dealer", "dude ranch", "dumpling restaurant", "durum restaurant", "dutch restaurant", "dvd store", "dye store", "dynamometer supplier", "eclectic restaurant", "ecological park", "ecologists association", "economic consultant", "ecuadorian restaurant", "education center", "educational consultant", "educational institution", "egg supplier", "egyptian restaurant", "electrical engineer", "electrical substation", "electrical wholesaler", "electronic engineer", "electronics company", "electronics engineer", "electronics exporter", "electronics manufacturer", "electronics store", "electronics wholesaler", "elementary school", "elevator manufacturer", "elevator service", "embossing service", "embroidery service", "embroidery shop", "emergency room", "emergency training", "employment agency", "employment attorney", "employment center", "employment consultant", "energy supplier", "engineering consultant", "engineering school", "english restaurant", "entertainment agency", "envelope supplier", "environment office", "environmental consultant", "environmental engineer", "environmental organization", "episcopal church", "equestrian club", "equestrian facility", "equestrian store", "equipment exporter", "equipment importer", "equipment supplier", "eritrean restaurant", "erotic massage", "escrow service", "espresso bar", "estate appraiser", "estate liquidator", "ethiopian restaurant", "ethnographic museum", "european restaurant", "evangelical church", "evening school", "event planner", "event venue", "excavating contractor", "exhibition planner", "extremadurian restaurant", "eyebrow bar", "eyelash salon", "fabric store", "fabric wholesaler", "fabrication engineer", "facial spa", "falafel restaurant", "family counselor", "family restaurant", "farm bureau", "farm school", "farm shop", "farmers market", "farrier service", "fashion designer", "fastener supplier", "fax service", "federal police", "feed manufacturer", "feed store", "fence contractor", "fencing salon", "fencing school", "ferrari dealer", "ferris wheel", "ferry service", "fertility clinic", "fertility physician", "fertilizer supplier", "festival hall", "fiat dealer", "fiberglass supplier", "figurine shop", "filipino restaurant", "filtration plant", "finance broker", "financial advisor", "financial audit", "financial consultant", "financial institution", "financial planner", "fingerprinting service", "finnish restaurant", "fire station", "firearms academy", "fireplace manufacturer", "fireplace store", "firewood supplier", "fireworks store", "fireworks supplier", "first aid", "fish farm", "fish processing", "fish restaurant", "fish spa", "fish store", "fishing camp", "fishing charter", "fishing club", "fishing pier", "fishing pond", "fishing store", "fitness center", "flag store", "flamenco school", "flamenco theater", "flea market", "flight school", "floating market", "flooring contractor", "flooring store", "floridian restaurant", "flour mill", "flower delivery", "flower designer", "flower market", "fmcg manufacturer", "fondue restaurant", "food bank", "food broker", "food court", "food manufacturer", "food producer", "foot bath", "foot care", "football club", "football field", "ford dealer", "foreclosure service", "foreign consulate", "forensic consultant", "forestry service", "forklift dealer", "fountain contractor", "foursquare church", "franconian restaurant", "fraternal organization", "free clinic", "freestyle wrestling", "french restaurant", "friends church", "fruit parlor", "fruit wholesaler", "fruits wholesaler", "fuel supplier", "fugu restaurant", "funeral director", "funeral home", "fur manufacturer", "fur service", "furnace store", "furniture accessories", "furniture maker", "furniture manufacturer", "furniture store", "furniture wholesaler", "fusion restaurant", "futon store", "futsal field", "galician restaurant", "gambling house", "gambling instructor", "game store", "garage builder", "garbage dump", "garden center", "garden machinery", "garment exporter", "gas company", "gas engineer", "gas shop", "gas station", "gasket manufacturer", "gastrointestinal surgeon", "gated community", "gay bar", "gay sauna", "gazebo builder", "general contractor", "general hospital", "general practitioner", "general store", "generator shop", "genesis dealer", "geological service", "georgian restaurant", "geotechnical engineer", "german restaurant", "ghost town", "gift shop", "girl bar", "glass blower", "glass engraving", "glass industry", "glass manufacturer", "glass merchant", "glass shop", "glassware manufacturer", "glassware store", "glassware wholesaler", "gmc dealer", "goan restaurant", "gold dealer", "goldfish store", "golf club", "golf course", "golf instructor", "golf shop", "gospel church", "government college", "government hospital", "government office", "government school", "gps supplier", "graduate school", "grain elevator", "grammar school", "granite supplier", "graphic designer", "gravel pit", "gravel plant", "greek restaurant", "green grocers", "greyhound stadium", "grill store", "grocery store", "group home", "grow shop", "guardia civil", "guatemalan restaurant", "guest house", "guitar instructor", "guitar store", "gujarati restaurant", "gun club", "gun shop", "gymnasium school", "gymnastics center", "gymnastics club", "gynecologist only", "gyro restaurant", "hair salon", "haitian restaurant", "hakka restaurant", "halal restaurant", "haleem restaurant", "halfway house", "ham shop", "hamburger restaurant", "hand surgeon", "handbags shop", "handball club", "handball court", "handicraft exporter", "handicraft fair", "handicraft museum", "handicraft school", "handicrafts wholesaler", "hardware store", "hat shop", "haunted house", "hawaiian restaurant", "hawker centre", "hawker stall", "hay supplier", "health consultant", "health counselor", "health resort", "health spa", "heart hospital", "heating contractor", "height works", "helicopter charter", "herb shop", "heritage building", "heritage museum", "heritage preservation", "heritage railroad", "high school", "highway patrol", "hiking area", "hiking guide", "hindu priest", "hindu temple", "hispanic church", "historical landmark", "historical society", "history museum", "hoagie restaurant", "hobby store", "hockey club", "hockey field", "hockey rink", "holding company", "holiday home", "home builder", "home hairdresser", "home help", "home inspector", "homekill service", "homeless service", "homeless shelter", "homeopathic pharmacy", "homeowners association", "honda dealer", "honduran restaurant", "honey farm", "hookah bar", "hookah store", "horse breeder", "horse trainer", "horsebox specialist", "horseshoe smith", "horsestable studfarm", "hose supplier", "hospital department", "host club", "house sitter", "housing association", "housing authority", "housing complex", "housing cooperative", "housing development", "housing society", "hungarian restaurant", "hunting area", "hunting club", "hunting preserve", "hunting store", "hvac contractor", "hyderabadi restaurant", "hydraulic engineer", "hypnotherapy service", "hyundai dealer", "ice supplier", "icelandic restaurant", "icse school", "idol manufacturer", "image consultant", "imax theater", "immigration attorney", "impermeabilization service", "incense supplier", "incineration plant", "indian restaurant", "indian takeaway", "indonesian restaurant", "indoor cycling", "indoor playground", "indoor snowcenter", "industrial consultant", "industrial engineer", "industrial supermarket", "infiniti dealer", "information services", "insolvency service", "instrumentation engineer", "insulation contractor", "insulator supplier", "insurance agency", "insurance attorney", "insurance broker", "insurance company", "insurance school", "interior decorator", "interior designer", "interior door", "international airport", "international school", "internet cafe", "internet shop", "investment bank", "investment company", "investment service", "irish pub", "irish restaurant", "iron works", "israeli restaurant", "isuzu dealer", "italian restaurant", "jaguar dealer", "jain temple", "jamaican restaurant", "janitorial service", "japanese delicatessen", "japanese restaurant", "japanese steakhouse", "javanese restaurant", "jazz club", "jeep dealer", "jewelry appraiser", "jewelry buyer", "jewelry designer", "jewelry engraver", "jewelry exporter", "jewelry manufacturer", "jewelry store", "jewish restaurant", "judaica store", "judicial auction", "judicial scrivener", "judo club", "judo school", "juice shop", "jujitsu school", "junior college", "junk dealer", "junk store", "justice department", "jute exporter", "jute mill", "kabaddi club", "kaiseki restaurant", "karaoke bar", "karate club", "karate school", "karma dealer", "karnataka restaurant", "kashmiri restaurant", "kazakhstani restaurant", "kebab shop", "kerala restaurant", "kerosene supplier", "kia dealer", "kickboxing school", "kimono store", "kitchen remodeler", "kite shop", "knife manufacturing", "knife store", "knit shop", "knitting instructor", "knitwear manufacturer", "kofta restaurant", "konkani restaurant", "korean church", "korean restaurant", "koshari restaurant", "kosher restaurant", "kushiyaki restaurant", "labor union", "ladder supplier", "lamborghini dealer", "lamination service", "lancia dealer", "land allotment", "land surveyor", "landscape architect", "landscape designer", "language school", "laotian restaurant", "lasik surgeon", "laundry service", "law firm", "law library", "law school", "lawyers association", "leagues club", "learning center", "leasing service", "leather exporter", "leather wholesaler", "lebanese restaurant", "lechon restaurant", "legal services", "lesbian bar", "lexus dealer", "license bureau", "life coach", "lighting consultant", "lighting contractor", "lighting manufacturer", "lighting store", "lighting wholesaler", "ligurian restaurant", "limousine service", "linens store", "lingerie manufacturer", "lingerie store", "lingerie wholesaler", "linoleum store", "liquor store", "literacy program", "lithuanian restaurant", "livery company", "livestock breeder", "livestock dealer", "livestock producer", "loan agency", "lock store", "locks supplier", "log cabins", "logging contractor", "logistics service", "lombardian restaurant", "loss adjuster", "lottery retailer", "lottery shop", "love hotel", "lpg conversion", "luggage store", "luggage wholesaler", "lumber store", "lunch restaurant", "lutheran church", "lymph drainage", "machine construction", "machine maintenance", "machine shop", "machine workshop", "machining manufacturer", "macrobiotic restaurant", "madrilian restaurant", "magazine store", "magic store", "mailbox supplier", "mailing service", "majorcan restaurant", "makeup artist", "malaysian restaurant", "maltese restaurant", "mammography service", "manado restaurant", "management school", "mandarin restaurant", "manor house", "maori organization", "map store", "mapping service", "marathi restaurant", "marble contractor", "marble supplier", "marche restaurant", "marine engineer", "marine surveyor", "maritime museum", "market researcher", "marketing agency", "marketing consultant", "markmens clubhouse", "marquee hire", "marriage celebrant", "marriage counselor", "maserati dealer", "masonic building", "masonry contractor", "massage school", "massage spa", "massage therapist", "maternity hospital", "maternity store", "mathematics school", "mattress store", "mausoleum builder", "maybach dealer", "mazda dealer", "mclaren dealer", "meal delivery", "meal takeaway", "meat packer", "meat processor", "meat products", "meat restaurant", "meat wholesaler", "mechanical contractor", "mechanical engineer", "mechanical plant", "media company", "media consultant", "media house", "mediation service", "medical center", "medical clinic", "medical examiner", "medical group", "medical lab", "medical lawyer", "medical office", "medical school", "medical spa", "medicine exporter", "meditation center", "meditation instructor", "mediterranean restaurant", "mehandi class", "mehndi designer", "memorial estate", "memorial park", "mennonite church", "mens tailor", "mercantile development", "messianic synagogue", "metal fabricator", "metal finisher", "metal supplier", "metal workshop", "metallurgy company", "metalware dealer", "metalware producer", "methodist church", "mexican restaurant", "mg dealer", "middle school", "militar archive", "militar residence", "military barrack", "military base", "military board", "military cemetery", "military hospital", "military school", "military town", "millwork shop", "mini dealer", "miniatures store", "mining company", "mining consultant", "mining engineer", "mining equipment", "mirror shop", "mitsubishi dealer", "mobile catering", "mobile disco", "mobile hairdresser", "modeling agency", "modeling school", "mold maker", "molding supplier", "momo restaurant", "monja restaurant", "monogramming service", "montessori school", "monument maker", "moped dealer", "moravian church", "moroccan restaurant", "mortgage broker", "mortgage lender", "motorcycle dealer", "motorcycle shop", "motoring club", "motorsports store", "mountain hut", "mountaineering class", "movie studio", "movie theater", "moving company", "mri center", "muffler shop", "mughlai restaurant", "mulch supplier", "municipal corporation", "municipal guard", "murtabak restaurant", "music college", "music conservatory", "music instructor", "music producer", "music publisher", "music school", "music store", "musical club", "nail salon", "nasi restaurant", "national forest", "national library", "national museum", "national park", "national reserve", "nature preserve", "naturopathic practitioner", "naval base", "navarraise restaurant", "neapolitan restaurant", "needlework shop", "neonatal physician", "nepalese restaurant", "netball club", "news service", "newspaper distribution", "newspaper publisher", "nicaraguan restaurant", "night club", "night market", "nissan dealer", "noodle shop", "norwegian restaurant", "notaries association", "notary public", "notions store", "novelties wholesaler", "novelty store", "nuclear engineer", "nudist club", "nudist park", "nurse practitioner", "nursery school", "nursing agency", "nursing association", "nursing home", "nursing school", "nut store", "nyonya restaurant", "oaxacan restaurant", "obanzai cuisine", "observation deck", "occupational therapist", "oden restaurant", "odia restaurant", "oil company", "oil refinery", "oil store", "oil wholesaler", "okonomiyaki restaurant", "oldsmobile dealer", "opel dealer", "open university", "opera company", "opera house", "ophthalmology clinic", "optical wholesaler", "oral surgeon", "orchid farm", "orchid grower", "organic farm", "organic restaurant", "organic store", "orphan asylum", "orthodox church", "orthodox synagogue", "orthopedic clinic", "orthopedic surgeon", "otolaryngology clinic", "outdoor bath", "outerwear store", "outlet mall", "outlet store", "oyster supplier", "paan shop", "package locker", "packaging company", "packaging machinery", "padang restaurant", "padel club", "padel court", "paint manufacturer", "paint store", "paintball center", "paintball store", "painting lessons", "painting studio", "paintings store", "paisa restaurant", "pakistani restaurant", "palatine restaurant", "pallet supplier", "pancake house", "panipuri shop", "paper distributor", "paper exporter", "paper mill", "paper store", "paraguayan restaurant", "parking garage", "parking lot", "parkour spot", "parochial school", "parsi restaurant", "parsi temple", "party planner", "party store", "passport agent", "passport office", "pasta shop", "pastry shop", "patent attorney", "patent office", "paving contractor", "pawn shop", "payroll service", "pedestrian zone", "pediatric cardiologist", "pediatric clinic", "pediatric dentist", "pediatric dermatologist", "pediatric endocrinologist", "pediatric gastroenterologist", "pediatric hematologist", "pediatric nephrologist", "pediatric neurologist", "pediatric oncologist", "pediatric ophthalmologist", "pediatric pulmonologist", "pediatric rheumatologist", "pediatric surgeon", "pediatric urologist", "pempek restaurant", "pen store", "pension office", "pentecostal church", "perfume store", "perinatal center", "persian restaurant", "personal trainer", "peruvian restaurant", "pet cemetery", "pet groomer", "pet sitter", "pet store", "pet trainer", "petrochemical engineer", "peugeot dealer", "pharmaceutical company", "pharmaceutical lab", "philharmonic hall", "pho restaurant", "photo agency", "photo booth", "photo lab", "photo shop", "photocopiers supplier", "photography class", "photography school", "photography service", "photography studio", "physician assistant", "physiotherapy center", "piadina restaurant", "piano bar", "piano instructor", "piano maker", "piano store", "pickleball court", "picnic ground", "pie shop", "piedmontese restaurant", "pig farm", "pilaf restaurant", "pilates studio", "pile driver", "pilgrim hostel", "pilgrimages place", "pinatas supplier", "pipe supplier", "pizza delivery", "pizza restaurant", "pizza takeaway", "plant nursery", "plaster contractor", "plastic surgeon", "plastic wholesaler", "plating service", "play school", "plywood supplier", "poke bar", "police academy", "polish restaurant", "political party", "polo club", "polygraph service", "polymer supplier", "polynesian restaurant", "polytechnic school", "pond contractor", "pontiac dealer", "pony club", "pool academy", "pool hall", "popcorn store", "porridge restaurant", "porsche dealer", "port authority", "portrait studio", "portuguese restaurant", "post office", "poster store", "pottery classes", "pottery manufacturer", "pottery store", "poultry farm", "poultry store", "power plant", "pozole restaurant", "prawn fishing", "precision engineer", "preparatory school", "presbyterian church", "press advisory", "pretzel store", "primary school", "print shop", "private college", "private hospital", "private investigator", "private school", "private tutor", "private university", "probation office", "process server", "produce market", "produce wholesaler", "professional association", "professional organizer", "propane supplier", "propeller shop", "property administrator", "property investment", "property maintenance", "property registry", "protected area", "protestant church", "provence restaurant", "provincial council", "psychiatric hospital", "psychom*otor therapist", "psychopedagogy clinic", "public bath", "public bathroom", "public beach", "public housing", "public library", "public sauna", "public school", "public university", "pueblan restaurant", "pump supplier", "pumpkin patch", "punjabi restaurant", "puppet theater", "pvc industry", "quaker church", "quantity surveyor", "quebecois restaurant", "quilt shop", "race course", "raclette restaurant", "racquetball club", "radiator shop", "radio broadcaster", "rail museum", "railing contractor", "railroad company", "railroad contractor", "railway services", "rajasthani restaurant", "ram dealer", "ramen restaurant", "reclamation centre", "record company", "record store", "recording studio", "recreation center", "recycling center", "reenactment site", "reform synagogue", "reformed church", "refrigerator store", "refugee camp", "regional airport", "regional council", "registration office", "registry office", "rehabilitation center", "rehearsa studio", "reiki therapist", "religious destination", "religious institution", "religious lodging", "religious organization", "religious school", "renault dealer", "repair service", "reptile store", "research engineer", "research foundation", "research institute", "residential college", "residents association", "resort hotel", "rest stop", "restaurant brasserie", "resume service", "retirement community", "retirement home", "retreat center", "rice mill", "rice restaurant", "rice shop", "rice wholesaler", "river port", "road cycling", "rock climbing", "rock shop", "roller coaster", "roman restaurant", "romanian restaurant", "roofing contractor", "rowing area", "rowing club", "rsl club", "rug store", "rugby club", "rugby field", "rugby store", "running store", "russian restaurant", "rv dealer", "rv park", "saab dealer", "sailing club", "sailing school", "sake brewery", "salad shop", "salsa bar", "salsa classes", "salvadoran restaurant", "salvage dealer", "salvage yard", "samba school", "sambo school", "sand plant", "sandblasting service", "sandwich shop", "sanitary inspection", "sanitation service", "sardinian restaurant", "saree shop", "satay restaurant", "saturn dealer", "sauna club", "sauna store", "savings bank", "saw mill", "scale supplier", "scandinavian restaurant", "scenic spot", "scenography company", "school administrator", "school center", "school house", "science academy", "science museum", "scottish restaurant", "scout hall", "scout home", "scrapbooking store", "screen printer", "screen store", "screw supplier", "scuba instructor", "sculpture museum", "seafood donburi", "seafood farm", "seafood market", "seafood restaurant", "seafood wholesaler", "seal shop", "seaplane base", "seat dealer", "seblak restaurant", "secondary school", "security service", "seed supplier", "serbian restaurant", "serviced accommodation", "serviced apartment", "sewing company", "sewing shop", "seychelles restaurant", "sfiha restaurant", "shanghainese restaurant", "sharpening service", "shawarma restaurant", "shed builder", "sheep shearer", "sheltered housing", "shelving store", "sheriffs department", "shinkin bank", "shinto shrine", "shipping company", "shipping service", "shochu brewery", "shoe factory", "shoe store", "shoe wholesaler", "shogi lesson", "shooting range", "shopping center", "shredding service", "shrimp farm", "sichuan restaurant", "sicilian restaurant", "siding contractor", "sign shop", "sikh temple", "silk store", "singaporean restaurant", "singles organization", "skate shop", "skateboard park", "skateboard shop", "skating instructor", "ski club", "ski resort", "ski school", "ski store", "skittle club", "skoda dealer", "skydiving center", "skylight contractor", "sleep clinic", "smart dealer", "smart shop", "smoke shop", "snack bar", "snowboard shop", "snowmobile dealer", "soccer club", "soccer field", "soccer practice", "soccer store", "social club", "social worker", "sod supplier", "sofa store", "softball club", "softball field", "software company", "sokol house", "soondae restaurant", "soto restaurant", "soup kitchen", "soup restaurant", "soup shop", "souvenir manufacturer", "souvenir store", "spa garden", "spanish restaurant", "special educator", "specialized clinic", "specialized hospital", "speech pathologist", "sperm bank", "spice store", "spices exporter", "spices wholesalers", "spiritist center", "sports bar", "sports club", "sports complex", "sports school", "sportswear store", "sportwear manufacturer", "spring supplier", "squash club", "squash court", "stair contractor", "stamp shop", "stand bar", "state archive", "state park", "state parliament", "state police", "stationery manufacturer", "stationery store", "stationery wholesaler", "std clinic", "steak house", "steamboat restaurant", "steel distributor", "steel erector", "steel fabricator", "stereo store", "sticker manufacturer", "stitching class", "stock broker", "stone carving", "stone cutter", "stone supplier", "storage facility", "stove builder", "structural engineer", "stucco contractor", "student dormitory", "student union", "studying center", "subaru dealer", "sugar factory", "sugar shack", "sukiyaki restaurant", "summer camp", "sundae restaurant", "sundanese restaurant", "sunglasses store", "sunroom contractor", "superannuation consultant", "superfund site", "support group", "surf school", "surf shop", "surgical center", "surgical oncologist", "surinamese restaurant", "surplus store", "sushi restaurant", "sushi takeaway", "suzuki dealer", "swabian restaurant", "swedish restaurant", "swim club", "swimming basin", "swimming competition", "swimming facility", "swimming instructor", "swimming lake", "swimming pool", "swimming school", "swimwear store", "swiss restaurant", "syrian restaurant", "tabascan restaurant", "tacaca restaurant", "tack shop", "taco restaurant", "taekwondo school", "taiwanese restaurant", "takoyaki stand", "talent agency", "tamale shop", "tanning studio", "taoist temple", "tapas bar", "tapas restaurant", "tatami store", "tattoo artist", "tattoo shop", "tax assessor", "tax attorney", "tax consultant", "tax department", "tax preparation", "taxi service", "taxi stand", "tb clinic", "tea exporter", "tea house", "tea manufacturer", "tea store", "tea wholesaler", "teacher college", "teachers housing", "technical school", "technical university", "technology museum", "technology park", "tegal restaurant", "telecommunication school", "telecommunications contractor", "telecommunications engineer", "telemarketing service", "telephone company", "telephone exchange", "telescope store", "television station", "temaki restaurant", "temp agency", "tenant ownership", "tenants union", "tennis club", "tennis court", "tennis instructor", "tennis store", "tesla showroom", "textile engineer", "textile exporter", "textile mill", "thai restaurant", "theater company", "theater production", "theme park", "thermal baths", "thread supplier", "thrift store", "thuringian restaurant", "tibetan restaurant", "tiffin center", "tiki bar", "tile contractor", "tile manufacturer", "tile store", "timeshare agency", "tire manufacturer", "tire shop", "title company", "toast restaurant", "tobacco exporter", "tobacco shop", "tobacco supplier", "tofu restaurant", "tofu shop", "toiletries store", "toll station", "tongue restaurant", "tonkatsu restaurant", "tool manufacturer", "tool store", "tool wholesaler", "topography company", "topsoil supplier", "tortilla shop", "tour agency", "tour operator", "tourist attraction", "towing service", "townhouse complex", "toy library", "toy manufacturer", "toy museum", "toy store", "toyota dealer", "tractor dealer", "trade school", "traditional market", "traditional restaurant", "traditional teahouse", "traffic officer", "trailer dealer", "trailer manufacturer", "train depot", "train yard", "training center", "training school", "transcription service", "transit depot", "transmission shop", "transplant surgeon", "transportation service", "travel agency", "travel clinic", "travel lounge", "tree farm", "tree service", "trial attorney", "tribal headquarters", "trophy shop", "truck dealer", "truck farmer", "truck stop", "trucking company", "trucking school", "truss manufacturer", "trust bank", "tuning automobile", "tunisian restaurant", "turf supplier", "turkish restaurant", "turkmen restaurant", "tuscan restaurant", "tutoring service", "tuxedo shop", "typewriter supplier", "typing service", "ukrainian restaurant", "unagi restaurant", "underwear store", "unemployment office", "uniform store", "unisex hairdresser", "unity church", "university department", "university hospital", "university library", "upholstery shop", "urology clinic", "uruguayan restaurant", "utility contractor", "uzbek restaurant", "vacation appartment", "valencian restaurant", "vaporizer store", "variety store", "vascular surgeon", "vastu consultant", "vegan restaurant", "vegetable wholesaler", "vegetarian restaurant", "vehicle exporter", "vehicle inspection", "venetian restaurant", "venezuelan restaurant", "veterans center", "veterans hospital", "veterans organization", "veterinary pharmacy", "video arcade", "video karaoke", "video store", "vietnamese restaurant", "village hall", "vineyard church", "violin shop", "visa consultant", "visitor center", "vocal instructor", "vocational college", "volkswagen dealer", "volleyball club", "volleyball court", "volleyball instructor", "volunteer organization", "volvo dealer", "waldorf kindergarten", "waldorf school", "wallpaper installer", "wallpaper store", "war museum", "warehouse club", "warehouse store", "watch manufacturer", "watch store", "water mill", "water park", "water works", "waterbed store", "waterproofing company", "wax museum", "wax supplier", "weaving mill", "website designer", "wedding bakery", "wedding buffet", "wedding chapel", "wedding photographer", "wedding planner", "wedding service", "wedding store", "wedding venue", "weigh station", "weightlifting area", "wellness center", "wellness hotel", "wellness program", "welsh restaurant", "wesleyan church", "western restaurant", "wheel store", "wheelchair store", "wholesale bakery", "wholesale drugstore", "wholesale florist", "wholesale grocer", "wholesale jeweler", "wholesale market", "wicker store", "wig shop", "wildlife park", "wildlife refuge", "wind farm", "window supplier", "windsurfing store", "wine bar", "wine cellar", "wine club", "wine store", "wine wholesaler", "wok restaurant", "womens college", "womens organization", "womens shelter", "wood supplier", "wool store", "workers club", "wrestling school", "yacht broker", "yacht club", "yakiniku restaurant", "yakisoba restaurant", "yakitori restaurant", "yarn store", "yemenite restaurant", "yoga instructor", "yoga studio", "youth care", "youth center", "youth club", "youth groups", "youth hostel", "youth organization", "yucatan restaurant", "aboriginal art gallery", "abundant life church", "accounting software company", "acrobatic diving pool", "addiction treatment center", "adult dvd store", "adult education school", "adult entertainment club", "adult entertainment store", "adventure sports center", "aerated drinks supplier", "aerial installation service", "aerial sports center", "aero dance class", "african goods store", "after school program", "agricultural high school", "agricultural machinery manufacturer", "agricultural product wholesaler", "air compressor supplier", "air conditioning contractor", "air conditioning store", "air filter supplier", "air force base", "airbrushing supply store", "aircraft maintenance company", "aircraft rental service", "aircraft supply store", "airline ticket agency", "airport shuttle service", "airsoft gun shop", "alcohol retail monopoly", "alcoholic beverage wholesaler", "alcoholism treatment program", "alfa romeo dealer", "alternative fuel station", "alternative medicine practitioner", "aluminum frames supplier", "american grocery store", "amish furniture store", "amusem*nt machine supplier", "amusem*nt park ride", "amusem*nt ride supplier", "an hui restaurant", "angler fish restaurant", "animal control service", "animal protection organization", "animal rescue service", "animal watering hole", "antique furniture store", "apartment rental agency", "appliance parts supplier", "appliance rental service", "appliance repair service", "appliances customer service", "architectural salvage store", "armed forces association", "aromatherapy supply store", "art restoration service", "art supply store", "artificial plant supplier", "asbestos testing service", "asian fusion restaurant", "asian grocery store", "asphalt mixing plant", "assisted living facility", "association or organization", "aston martin dealer", "attorney referral service", "atv rental service", "atv repair shop", "audio visual consultant", "australian goods store", "auto accessories wholesaler", "auto body shop", "auto bodywork mechanic", "auto chemistry shop", "auto electrical service", "auto glass shop", "auto insurance agency", "auto machine shop", "auto parts manufacturer", "auto parts market", "auto parts store", "auto repair shop", "auto restoration service", "auto rickshaw stand", "auto spring shop", "auto sunroof shop", "auto tag agency", "automobile storage facility", "aviation training institute", "ayam penyet restaurant", "baby clothing store", "baby swimming school", "bail bonds service", "baking supply store", "ballroom dance instructor", "bar and grill", "bar stool supplier", "barber supply store", "baseball goods store", "basketball court contractor", "bathroom supply store", "batik clothing store", "batting cage center", "beach cleaning service", "beach clothing store", "beach entertainment shop", "beach volleyball club", "beach volleyball court", "beauty product supplier", "beauty products wholesaler", "beauty supply store", "bed and breakfast", "bedroom furniture store", "bee relocation service", "bicycle rental service", "bicycle repair shop", "bikram yoga studio", "billiards supply store", "bird control service", "bird watching area", "birth certificate service", "birth control center", "blast cleaning service", "blood donation center", "blood testing service", "bmw motorcycle dealer", "board game club", "board of education", "boat accessories supplier", "boat cleaning service", "boat cover supplier", "boat rental service", "boat repair shop", "boat storage facility", "boat tour agency", "boat trailer dealer", "bocce ball court", "body piercing shop", "body shaping class", "bonsai plant supplier", "boot repair shop", "border crossing station", "bottled water supplier", "bouncy castle hire", "bowling supply shop", "box lunch supplier", "boys high school", "bpo placement agency", "brewing supply store", "bubble tea store", "buddhist supplies store", "building design company", "building materials market", "building materials store", "building materials supplier", "building restoration service", "bungee jumping center", "burglar alarm store", "bus ticket agency", "bus tour agency", "business administration service", "business banking service", "business development service", "business management consultant", "business networking company", "butane gas supplier", "butcher shop deli", "cabin rental agency", "calvary chapel church", "camera repair shop", "camper shell supplier", "cancer treatment center", "cane furniture store", "cape verdean restaurant", "car accessories store", "car alarm supplier", "car battery store", "car detailing service", "car inspection station", "car leasing service", "car race track", "car rental agency", "car sharing location", "car stereo store", "career guidance service", "carpet cleaning service", "carriage ride service", "casual sushi restaurant", "cat boarding service", "cell phone store", "central american restaurant", "central european restaurant", "central javanese restaurant", "certified public accountant", "chamber of agriculture", "chamber of commerce", "chamber of handicrafts", "champon noodle restaurant", "check cashing service", "chicken wings restaurant", "child care agency", "children amusem*nt center", "childrens book store", "childrens clothing store", "childrens furniture store", "childrens party buffet", "childrens party service", "chinese language instructor", "chinese language school", "chinese medicine clinic", "chinese medicine store", "chinese noodle restaurant", "chinese tea house", "christian book store", "christmas tree farm", "church of christ", "church supply store", "cig kofte restaurant", "cinema equipment supplier", "citizen information bureau", "citizens advice bureau", "city clerks office", "city district office", "city employment department", "city government office", "city pillar shine", "city tax office", "civil engineering company", "civil examinations academy", "civil law attorney", "cleaning products supplier", "clock repair service", "clock watch maker", "closed circuit television", "clothing alteration service", "cng fittment center", "coast guard station", "coffee machine supplier", "coffee vending machine", "coin operated locker", "cold cut store", "cold noodle restaurant", "cold storage facility", "college of agriculture", "comic book store", "commercial cleaning service", "commercial refrigerator supplier", "commissioner for oaths", "community health center", "comprehensive secondary school", "computer accessories store", "computer desk store", "computer hardware manufacturer", "computer networking center", "computer repair service", "computer security service", "computer software store", "computer training school", "concrete product supplier", "condominium rental agency", "conservatory construction contractor", "conservatory of music", "construction equipment supplier", "construction machine dealer", "construction material wholesaler", "consumer advice center", "contact lenses supplier", "contemporary louisiana restaurant", "convention information bureau", "copier repair service", "copying supply store", "corporate entertainment service", "corporate gift supplier", "correctional services department", "cosmetic products manufacturer", "cost accounting service", "costa rican restaurant", "costume jewelry shop", "costume rental service", "country food restaurant", "county government office", "court executive officer", "crab dish restaurant", "crane rental agency", "credit counseling service", "credit reporting agency", "crime victim service", "criminal law attorney", "crushed stone supplier", "cured ham bar", "cured ham store", "cured ham warehouse", "currency exchange service", "custom home builder", "custom label printer", "cycle rickshaw stand", "dart supply store", "data entry service", "data recovery service", "database management company", "day care center", "debris removal service", "debt collection agency", "delivery chinese restaurant", "denim wear store", "dental implants periodontist", "dental implants provider", "dental insurance agency", "dental supply store", "denture care center", "department of education", "department of finance", "department of housing", "department of transportation", "desktop publishing service", "diabetes equipment supplier", "diesel engine dealer", "diesel fuel supplier", "digital printing service", "dim sum restaurant", "direct mail advertising", "disability equipment supplier", "disabled sports center", "disc golf course", "display home center", "display stand manufacturer", "disposable tableware supplier", "distance learning center", "district government office", "dj supply store", "dogsled ride service", "doll restoration service", "doner kebab restaurant", "double glazing supplier", "drafting equipment supplier", "dried flower shop", "dried seafood store", "drilling equipment supplier", "drinking water fountain", "drivers license office", "driving test centre", "drug testing service", "dry fruit store", "dry ice supplier", "dry wall contractor", "ds automobiles dealer", "dump truck dealer", "dumpster rental service", "duty free store", "e commerce agency", "e commerce service", "ear piercing service", "earth works company", "east african restaurant", "east javanese restaurant", "eastern european restaurant", "eastern orthodox church", "economic development agency", "educational supply store", "educational testing service", "eftpos equipment supplier", "elder law attorney", "electric bicycle store", "electric motor store", "electric motorcycle dealer", "electric utility company", "electric utility manufacturer", "electrical appliance wholesaler", "electrical equipment supplier", "electrical installation service", "electrical repair shop", "electrical supply store", "electronic parts supplier", "electronics accessories wholesaler", "electronics hire shop", "electronics repair shop", "electronics vending machine", "emergency call station", "emergency care physician", "emergency care service", "emergency dental service", "emergency locksmith service", "emergency management ministry", "emergency training school", "emergency veterinarian service", "engine rebuilding service", "english language camp", "english language instructor", "english language school", "environmental health service", "environmental protection organization", "equipment rental agency", "escape room center", "estate planning attorney", "event management company", "event technology service", "event ticket seller", "executive search firm", "extended stay hotel", "eye care center", "fabric product manufacturer", "factory equipment supplier", "faculty of arts", "faculty of law", "faculty of pharmacy", "faculty of psychology", "faculty of science", "faculty of sports", "fair trade organization", "family law attorney", "family planning center", "family planning counselor", "family practice physician", "family service center", "farm equipment supplier", "farm household tour", "fashion accessories store", "fashion design school", "fast food restaurant", "federal credit union", "federal government office", "federal reserve bank", "felt boots store", "fence supply store", "feng shui consultant", "feng shui shop", "fiberglass repair service", "filipino grocery store", "film production company", "fine dining restaurant", "finishing materials supplier", "fire alarm supplier", "fire fighters academy", "fire protection consultant", "fire protection service", "fitness equipment store", "fitness equipment wholesaler", "fitted furniture supplier", "fixed base operator", "flamenco dance store", "floor refinishing service", "fmcg goods wholesaler", "foam rubber producer", "foam rubber supplier", "folk high school", "food machinery supplier", "food manufacturing supply", "food processing company", "food processing equipment", "food products supplier", "food seasoning manufacturer", "foot massage parlor", "foreign trade consultant", "foreman builders association", "forklift rental service", "formal clothing store", "fortune telling services", "foster care service", "free parking lot", "freight forwarding service", "french language school", "french steakhouse restaurant", "fresh food market", "fried chicken takeaway", "frozen dessert supplier", "frozen food manufacturer", "frozen food store", "frozen yogurt shop", "fu jian restaurant", "full gospel church", "function room facility", "funeral celebrant service", "fur coat shop", "furnace parts supplier", "furnace repair service", "furnished apartment building", "furniture accessories supplier", "furniture rental service", "furniture repair shop", "garage door supplier", "garbage collection service", "garbage dump service", "garden building retail", "garden furniture store", "gas cylinders supplier", "gas installation service", "gas logs supplier", "gay night club", "general education school", "general practice attorney", "general register office", "geological research company", "german language school", "gift basket store", "gift wrap store", "girls secondary school", "glass block supplier", "glass cutting service", "glass etching service", "glass repair service", "glasses repair service", "gluten free restaurant", "go kart track", "gold mining company", "golf cart dealer", "golf course builder", "golf driving range", "gourmet grocery store", "government economic program", "government ration shop", "graffiti removal service", "greco roman wrestling", "greek orthodox church", "green energy supplier", "greeting card shop", "grocery delivery service", "gui zhou restaurant", "guts barbecue restaurant", "gutter cleaning service", "gypsum product supplier", "hair extension technician", "hair extensions supplier", "hair removal service", "hair replacement service", "hair transplantation clinic", "handicapped transportation service", "hang gliding center", "hardware training institute", "harley davidson dealer", "haute french restaurant", "hawaiian goods store", "head start center", "health food restaurant", "health food store", "health insurance agency", "hearing aid store", "heating equipment supplier", "heating oil supplier", "helicopter tour agency", "helium gas supplier", "herbal medicine store", "high ropes course", "higher secondary school", "historical place museum", "hiv testing center", "hockey supply store", "holiday apartment rental", "holistic medicine practitioner", "home automation company", "home cinema installation", "home goods store", "home improvement store", "home insurance agency", "home theater store", "horse boarding stable", "horse rental service", "horse riding field", "horse riding school", "horse trailer dealer", "horseback riding service", "hospitality high school", "hot bedstone spa", "hot dog restaurant", "hot dog stand", "hot pot restaurant", "hot tub store", "hotel management school", "hotel supply store", "house cleaning service", "house clearance service", "house sitter agency", "houseboat rental service", "household chemicals supplier", "household goods wholesaler", "housing utility company", "hua gong shop", "hub cap supplier", "human ressource consulting", "hunan style restaurant", "hydraulic equipment supplier", "hydraulic repair service", "hydroelectric power plant", "hydroponics equipment supplier", "hygiene articles wholesaler", "hyperbaric medicine physician", "ice cream shop", "ice hockey club", "ice skating club", "ice skating instructor", "ice skating rink", "ikan bakar restaurant", "immigration detention center", "import export company", "income protection insurance", "indian grocery store", "indian motorcycle dealer", "indian muslim restaurant", "indian sizzler restaurant", "indian sweets shop", "indoor golf course", "indoor swimming pool", "industrial chemicals wholesaler", "industrial design company", "industrial door supplier", "industrial engineers association", "industrial equipment supplier", "industrial framework supplier", "industrial gas supplier", "infectious disease physician", "insulation materials store", "intellectual property registry", "interior architect office", "interior construction contractor", "interior fitting contractor", "interior plant service", "internal medicine ward", "international trade consultant", "internet marketing service", "internet service provider", "invitation printing service", "irish goods store", "iron steel contractor", "iron ware dealer", "irrigation equipment supplier", "italian grocery store", "janitorial equipment supplier", "japanese authentic restaurant", "japanese confectionery shop", "japanese curry restaurant", "japanese grocery store", "japanese izakaya restaurant", "japanese language instructor", "japanese regional restaurant", "japanese sweets restaurant", "jehovahs witness church", "jewelry equipment supplier", "jewelry repair service", "jiang su restaurant", "juvenile detention center", "kalle pache restaurant", "kawasaki motorcycle dealer", "key duplication service", "kitchen furniture store", "kitchen supply store", "korean barbecue restaurant", "korean beef restaurant", "korean grocery store", "korean rib restaurant", "kosher grocery store", "kung fu school", "kyoto cuisine restaurant", "labor relations attorney", "laboratory equipment supplier", "laminating equipment supplier", "lamp repair service", "lamp shade supplier", "land planning authority", "land reform institute", "land rover dealer", "land surveying office", "landscape lighting designer", "landscaping supply store", "laser cutting service", "laser equipment supplier", "laser tag center", "latin american restaurant", "law book store", "lawn bowls club", "lawn care service", "lawn mower store", "leather cleaning service", "leather coats store", "leather goods manufacturer", "leather goods store", "leather goods supplier", "leather goods wholesaler", "leather repair service", "legal affairs bureau", "legal aid office", "life insurance agency", "light bulb supplier", "lincoln mercury dealer", "line marking service", "little league club", "little league field", "live music bar", "live music venue", "livestock auction house", "local government office", "local history museum", "local medical services", "log home builder", "lost property office", "luggage repair service", "luggage storage facility", "machine knife supplier", "machine repair service", "machinery parts manufacturer", "mah jong house", "mailbox rental service", "mailing machine supplier", "main customs office", "manufactured home transporter", "marine supply store", "marriage license bureau", "martial arts club", "martial arts school", "masonry supply store", "massage supply store", "match box manufacturer", "measuring instruments supplier", "medical billing service", "medical book store", "medical certificate service", "medical equipment manufacturer", "medical equipment supplier", "medical supply store", "medical technology manufacturer", "medical transcription service", "meeting planning service", "mens clothing store", "mens health physician", "mental health clinic", "mental health service", "mercedes benz dealer", "metal construction company", "metal industry suppliers", "metal machinery supplier", "metal polishing service", "metal processing company", "metal stamping service", "metal working shop", "metaphysical supply store", "metropolitan train company", "mexican goods store", "mexican grocery store", "mexican torta restaurant", "middle eastern restaurant", "military recruiting office", "milk delivery service", "mineral water company", "mineral water wholesale", "miniature golf course", "minibus taxi service", "ministry of education", "miso cutlet restaurant", "missing persons organization", "mobile home dealer", "mobile home park", "mobile money agent", "mobile network operator", "mobility equipment supplier", "model design company", "model portfolio studio", "model train store", "modern art museum", "modern british restaurant", "modern european restaurant", "modern french restaurant", "modern indian restaurant", "modular home builder", "modular home dealer", "money order service", "money transfer service", "mongolian barbecue restaurant", "mordern izakaya restaurants", "motor scooter dealer", "motor vehicle dealer", "motorcycle driving school", "motorcycle insurance agency", "motorcycle parts store", "motorcycle rental agency", "motorcycle repair shop", "mountain cable car", "movie rental kiosk", "movie rental store", "moving supply store", "municipal administration office", "municipal department communication", "municipal department finance", "municipal health department", "municipal office education", "municipal social development", "museum of zoology", "music box store", "musical instrument manufacturer", "musical instrument store", "musician and composer", "mutton barbecue restaurant", "nasi goreng restaurant", "nasi uduk restaurant", "national health foundation", "native american restaurant", "natural foods store", "natural history museum", "natural stone exporter", "natural stone supplier", "natural stone wholesaler", "neon sign shop", "new age church", "new england restaurant", "new zealand restaurant", "newspaper advertising department", "non denominational church", "non governmental organization", "non profit organization", "non vegetarian restaurant", "north african restaurant", "north indian restaurant", "northern italian restaurant", "nuclear power company", "nuclear power plant", "nuevo latino restaurant", "obstetrics gynecology clinic", "occupational health service", "occupational medical physician", "off roading area", "offal pot cooking", "office accessories wholesaler", "office equipment supplier", "office furniture store", "office refurbishment service", "office supply store", "office supply wholesaler", "oil change service", "olive oil cooperative", "olive oil manufacturer", "open air museum", "optical products manufacturer", "oral maxillofacial surgeon", "organic drug store", "organic food store", "oriental goods store", "oriental medicine clinic", "oriental medicine store", "oriental rug store", "orthopedic shoe store", "orthopedic supplies store", "outboard motor store", "outdoor activity organizer", "outdoor equestrian facility", "outdoor furniture store", "outdoor movie theatre", "outdoor sports store", "outdoor swimming pool", "oxygen co*cktail spot", "oxygen equipment supplier", "oyster bar restaurant", "pacific rim restaurant", "packaging supply store", "pain control clinic", "pain management physician", "paint stripping company", "pan asian restaurant", "pan latin restaurant", "paper bag supplier", "paralegal services provider", "parasailing ride service", "park and ride", "part time daycare", "passport photo processor", "paternity testing service", "patients support association", "patio enclosure supplier", "paving materials supplier", "pecel lele restaurant", "pennsylvania dutch restaurant", "performing arts group", "performing arts theater", "personal chef service", "personal injury lawyer", "personal watercraft dealer", "pest control service", "pet adoption service", "pet boarding service", "pet funeral services", "pet moving service", "pet supply store", "petroleum products company", "pharmaceutical products wholesaler", "phone repair service", "photo restoration service", "physical examination center", "physical fitness program", "physician referral service", "physiotherapy equip supplier", "piano moving service", "piano repair service", "piano tuning service", "picture frame shop", "pinball machine supplier", "pine furniture shop", "pizza delivery service", "place of worship", "plast window store", "plastic bag supplier", "plastic bags wholesaler", "plastic fabrication company", "plastic products supplier", "plastic resin manufacturer", "plastic surgery clinic", "playground equipment supplier", "plumbing supply store", "pneumatic tools supplier", "po boys restaurant", "police officers housing", "police supply store", "pond fish supplier", "pond supply store", "pony ride service", "pool billard club", "pool cleaning service", "port operating company", "portable building manufacturer", "portable toilet supplier", "powder coating service", "power plant consultant", "powersports vehicle dealer", "pre gymnasium school", "prefabricated house companies", "prefecture government office", "pregnancy care center", "pressure washing service", "printed music publisher", "printer repair service", "printing equipment supplier", "private equity firm", "private golf course", "private sector bank", "promotional products supplier", "property management company", "protective clothing supplier", "psychoneurological specialized clinic", "psychosomatic medical practitioner", "public defenders office", "public golf course", "public health department", "public medical center", "public parking space", "public prosecutors office", "public relations firm", "public safety office", "public sector bank", "public swimming pool", "public works department", "puerto rican restaurant", "pvc windows supplier", "race car dealer", "radiator repair service", "raft trip outfitter", "railroad equipment supplier", "railroad ties supplier", "rainwater tank supplier", "rare book store", "raw food restaurant", "real estate agency", "real estate agents", "real estate appraiser", "real estate attorney", "real estate auctioneer", "real estate consultant", "real estate developer", "real estate school", "real estate surveyor", "record storage facility", "refrigerated transport service", "refrigerator repair service", "regional government office", "registered general nurse", "religious book store", "religious goods store", "renters insurance agency", "reproductive health clinic", "resident registration office", "restaurant supply store", "retaining wall supplier", "rice cake shop", "rice cracker shop", "road construction company", "road safety town", "rock climbing centre", "rock climbing instructor", "rock music club", "roller skating club", "roller skating rink", "rolls royce dealer", "roofing supply store", "roommate referral service", "rubber products supplier", "rubber stamp store", "rugby league club", "russian grocery store", "russian orthodox church", "rustic furniture store", "rv rental agency", "rv repair shop", "rv storage facility", "rv supply store", "safety equipment supplier", "sailing event area", "satellite communication service", "saw sharpening service", "scaffolding rental service", "scale model club", "scale model shop", "scale repair service", "school bus service", "school district office", "school lunch center", "school supply store", "scientific equipment supplier", "scooter rental service", "scooter repair shop", "scrap metal dealer", "screen printing shop", "screen repair service", "scuba tour agency", "seasonal goods store", "second hand shop", "secondary school three", "security guard service", "security system supplier", "self defense school", "self service restaurant", "self storage facility", "semi conductor supplier", "senior citizen center", "senior high school", "septic system service", "sewage disposal service", "sewage treatment plant", "sewing machine store", "shabu shabu restaurant", "shan dong restaurant", "sheepskin coat store", "sheet metal contractor", "sheet music store", "shipping equipment industry", "shoe repair shop", "shoe shining service", "shooting event area", "shower door shop", "sightseeing tour agency", "silk plant shop", "singing telegram service", "sixth form college", "skate sharpening service", "skeet shooting range", "skewer deep frying", "ski rental service", "ski repair service", "skin care clinic", "smart car dealer", "smog inspection station", "snow removal service", "snowboard rental service", "snowmobile rental service", "soba noodle shop", "social security attorney", "social security office", "social services organization", "social welfare center", "societe de flocage", "soft drinks shop", "software training institute", "soil testing service", "solar energy company", "solar energy contractor", "solid fuel company", "solid waste engineer", "soto ayam restaurant", "soul food restaurant", "south african restaurant", "south american restaurant", "south asia restaurant", "south indian restaurant", "south sulawesi restaurant", "southern italian restaurant", "southwest french restaurant", "soy sauce maker", "space of remembrance", "special education school", "sport tour agency", "sporting goods store", "sports accessories wholesaler", "sports card store", "sports massage therapist", "sports medicine clinic", "sports medicine physician", "sports memorabilia store", "sports nutrition store", "sri lankan restaurant", "stained glass studio", "stainless steel plant", "stall installation service", "stamp collectors club", "staple food package", "state department communication", "state department finance", "state employment department", "state government office", "state liquor store", "state owned farm", "std testing service", "steamed bun shop", "steel construction company", "steel drum supplier", "steel framework contractor", "steelwork design company", "stereo rental store", "stereo repair service", "stock exchange building", "store equipment supplier", "stringed intrument maker", "student housing center", "students parents association", "students support association", "suburban train line", "summer toboggan run", "super public bath", "surf lifesaving club", "surgical products wholesaler", "surgical supply store", "suzuki motorcycle dealer", "swimming pool contractor", "t shirt company", "t shirt store", "table tennis club", "table tennis facility", "tai chi school", "tata motors dealer", "tattoo removal service", "tax collectors office", "tax preparation service", "tea market place", "teeth whitening service", "telecommunications service provider", "telephone answering service", "television repair service", "tempura bowl restaurants", "tempura dish restaurant", "tent rental service", "teppan grill restaurant", "tex mex restaurant", "thai massage therapist", "theater supply store", "theatrical costume supplier", "thermal energy company", "tile cleaning service", "tire repair shop", "toner cartridge supplier", "tool grinding service", "tool rental service", "tool repair shop", "tourist information center", "towing equipment provider", "tractor repair shop", "trading card store", "traditional costume club", "traditional kostume store", "trailer rental service", "trailer repair shop", "trailer supply store", "train repairing center", "train ticket agency", "train ticket counter", "transportation escort service", "triumph motorcycle dealer", "tropical fish store", "truck accessories store", "truck parts supplier", "truck rental agency", "truck repair shop", "truck topper supplier", "tsukigime parking lot", "tune up supplier", "typewriter repair service", "udon noodle shop", "unfinished furniture store", "unitarian universalist church", "united methodist church", "upholstery cleaning service", "urban planning department", "urgent care center", "used appliance store", "used bicycle shop", "used book store", "used car dealer", "used clothing store", "used computer store", "used furniture store", "used motorcycle dealer", "used tire shop", "used truck dealer", "utility trailer dealer", "uyghur cuisine restaurant", "vacuum cleaner store", "valet parking service", "van rental agency", "vcr repair service", "vegetable wholesale market", "vehicle shipping agent", "vehicle wrapping service", "vending machine supplier", "venture capital company", "veterans affairs department", "video conferencing service", "video duplication service", "video editing service", "video game store", "video production service", "vintage clothing store", "vinyl sign shop", "virtual office rental", "vocational gymnasium school", "vocational school one", "vocational secondary school", "vocational training school", "voter registration office", "walk in clinic", "waste management service", "waste transfer station", "watch repair service", "water cooler supplier", "water filter supplier", "water polo pool", "water pump supplier", "water purification company", "water ski shop", "water skiing club", "water skiing instructor", "water skiing service", "water testing service", "water treatment plant", "water treatment supplier", "water utility company", "waterbed repair service", "weather forecast service", "web hosting service", "wedding souvenir shop", "weight loss service", "welding gas supplier", "welding supply store", "well drilling contractor", "west african restaurant", "western apparel store", "wheel alignment service", "wheelchair rental service", "wheelchair repair service", "wholesale food store", "wholesale plant nursery", "wholesaler household appliances", "wi fi spot", "wildlife rescue service", "willow basket manufacturer", "wind turbine builder", "window cleaning service", "window installation service", "window tinting service", "window treatment store", "wine storage facility", "winemaking supply store", "wing chun school", "womens clothing store", "womens personal trainer", "womens protection service", "wood frame supplier", "wood stove shop", "wood working class", "woodworking supply store", "work clothes store", "working womens hostel", "x ray lab", "yamaha motorcycle dealer", "yoga retreat center", "youth clothing store", "zhe jiang restaurant", "adult day care center", "adult foster care service", "air compressor repair service", "air conditioning repair service", "air conditioning system supplier", "air duct cleaning service", "arborist and tree surgeon", "army and navy store", "asian household goods store", "assemblies of god church", "audio visual equipment supplier", "auto air conditioning service", "auto body parts supplier", "auto dent removal service", "auto glass repair service", "auto radiator repair service", "auto tune up service", "auto window tinting service", "bahai house of worship", "balloon ride tour agency", "bar restaurant furniture store", "beauty products vending machine", "beef rice bowl restaurant", "building equipment hire service", "bus and coach company", "business to business service", "cake decorating equipment shop", "canoe and kayak club", "canoe and kayak store", "car security system installer", "cardiovascular and thoracic surgeon", "carport and pergola builder", "cash and carry wholesaler", "casual japanese style restaurant", "cell phone accessory store", "cell phone charging station", "chess and card club", "child health care centre", "church of the nazarene", "city department of environment", "city department of transportation", "classified ads newspaper publisher", "clothes and fabric manufacturer", "clothes and fabric wholesaler", "clothing wholesale market place", "commercial real estate agency", "commercial real estate inspector", "computer support and services", "concrete metal framework supplier", "construction and maintenance office", "construction machine rental service", "cosmetics and parfumes supplier", "curtain and upholstery cleaner", "curtain supplier and maker", "custom confiscated goods store", "custom t shirt store", "dairy farm equipment supplier", "dan dan noodle restaurant", "dealer of fiat professional", "diesel engine repair service", "disciples of christ church", "do it yourself store", "dog day care center", "domestic abuse treatment center", "drive in movie theater", "driver vehicle licensing agency", "drivers license training school", "dry wall supply store", "dryer vent cleaning service", "eating disorder treatment center", "electric motor repair shop", "electric motor scooter dealer", "electric motor vehicle dealer", "electric vehicle charging station", "electrolysis hair removal service", "energy equipment and solutions", "evening dress rental service", "executive suite rental agency", "exhibition and trade center", "family day care service", "farm equipment repair service", "fiber optic products supplier", "film and photograph library", "fire protection system supplier", "fish and chips restaurant", "fish and chips takeaway", "food and beverage consultant", "food and beverage exporter", "fruit and vegetable processing", "fruit and vegetable store", "fruit and vegetable wholesaler", "full dress rental service", "gay and lesbian organization", "geography and history faculty", "glass and mirror shop", "ground self defense force", "guardia di finanza police", "haute couture fashion house", "health and beauty shop", "hearing aid repair service", "hearing assistance earphone store", "hip hop dance class", "home health care service", "home help service agency", "hong kong style cafe", "hospital and equipment supplies", "hospitality and tourism school", "hot tub repair service", "hot water system supplier", "hua niao market place", "hunting and fishing store", "ice cream equipment supplier", "income tax help association", "industrial real estate agency", "japanese cheap sweets shop", "japanese high quality restaurant", "japanized western food restaurant", "karaoke equipment rental service", "kilt shop and hire", "laser hair removal service", "lawn equipment rental service", "lawn mower repair service", "lawn sprinkler system contractor", "learner driver training area", "license plate frames supplier", "low income housing program", "marine self defense force", "martial arts supply store", "medical diagnostic imaging center", "metal detecting equipment supplier", "metal heat treating service", "microwave oven repair service", "mid atlantic us restaurant", "mobile home rental agency", "mobile home supply store", "mobile phone repair shop", "model car play area", "motor scooter repair shop", "moving and storage service", "muay thai boxing gym", "museum of space history", "music management and promotion", "musical instrument repair shop", "native american goods store", "natural rock climbing area", "new us american restaurant", "non smoking holiday home", "north eastern indian restaurant", "occupational safety and health", "off road race track", "off track betting shop", "office equipment rental service", "office equipment repair service", "office of vital records", "office space rental agency", "oil field equipment supplier", "olive oil bottling company", "optical instrument repair service", "orthotics and prosthetics service", "paper shredding machine supplier", "parking lot for bicycles", "parking lot for motorcycle", "party equipment rental service", "pay by weight restaurant", "permanent make up clinic", "plant and machinery hire", "plastic injection molding service", "plus size clothing store", "power plant equipment supplier", "printer ink refill store", "printing equipment and supplies", "producteur de foie gras", "professional and hobby associations", "public wheelchair accessible bathroom", "qing fang market place", "racing car parts store", "ready mix concrete supplier", "real estate rental agency", "recycling drop off location", "research and product development", "retail space rental agency", "rolled metal products supplier", "safe and vault shop", "sand and gravel supplier", "school for the deaf", "screen printing supply store", "self service car wash", "self service health station", "senior citizens care service", "seventh day adventist church", "sewing machine repair service", "shared use commercial kitchen", "shipbuilding and repair company", "shipping and mailing service", "single sex secondary school", "small appliance repair service", "small claims assistance service", "small engine repair service", "solar energy equipment supplier", "solar photovoltaic power plant", "south east asian restaurant", "spa and health club", "sports equipment rental service", "stage lighting equipment supplier", "state dept of culture", "state dept of sports", "state office of education", "study at home school", "swimming pool supply store", "table tennis supply store", "tattoo and piercing shop", "threads and yarns wholesaler", "three d printing service", "tool and die shop", "toy and game manufacturer", "trade fair construction company", "united church of canada", "united church of christ", "us pacific northwest restaurant", "used auto parts store", "used musical instrument store", "used store fixture supplier", "washer and dryer store", "water jet cutting service", "water tank cleaning service", "water works equipment supplier", "oil and gas exploration service" ] } }, "searchMatching": { "title": "Title must match search term", "enum": [ "all", "only_includes", "only_exact" ], "type": "string", "description": "Restrict what places are scraped based on matching their title with provided search term", "default": "all" }, "placeMinimumStars": { "title": "⭐️ Place minimum stars", "enum": [ "", "two", "twoAndHalf", "three", "threeAndHalf", "four", "fourAndHalf" ], "type": "string", "description": "Only scrape places with a rating of at least the number of selected stars. Places without any reviews are skipped as well. Be aware that limiting by reviews lowers places found per credits spent because many places are discarded.", "default": "" }, "skipClosedPlaces": { "title": "⏩ Skip closed places", "type": "boolean", "description": "Skips places that are marked as temporary or permanently closed. This is useful if you want to get only places that are currently open.", "default": false }, "startUrls": { "title": "Google Maps URLs", "type": "array", "description": "Max 300 results per search URL. To overcome this limit, use geolocation parameters above &#8593;\n\nCopy URLs directly from Google Maps and paste it here. Leave empty if you have already filled the <strong>Search term</strong> field.\n\nValid format for URLs contains either <code>/maps/search</code> or <code>/maps/place</code>. This Actor also supports uncommon formats: <code>google.com?cid=***</code>, <code>goo.gl/maps</code>, and custom place list URL.", "items": { "type": "object", "required": [ "url" ], "properties": { "url": { "type": "string", "title": "URL of a web page", "format": "uri" } } } }, "allPlacesNoSearchAction": { "title": "Scrape all places (no search term)", "enum": [ "", "all_places_no_search_ocr", "all_places_no_search_mouse" ], "type": "string", "description": "Will scrape all places visible on the map. Use the Zoom input parameter to select the level of detail. Higher zoom will scrape more places but will take longer to finish. You can test what place pins are visible with a specific zoom by changing the <a href>16z</a> part of the Google Maps URL.", "default": "" }

Seguidores: 0

API Creator:

Google Maps locations and businesses | Cheapest API API: como usar a API com a chave de API gratuita | RapidAPI (1)

apispace

docspace

Efetuar login para classificar API

Avaliação: 5 - Votos: 1

Google Maps locations and businesses | Cheapest API API: como usar a API com a chave de API gratuita | RapidAPI (2024)

References

Top Articles
Latest Posts
Article information

Author: Catherine Tremblay

Last Updated:

Views: 6039

Rating: 4.7 / 5 (47 voted)

Reviews: 86% of readers found this page helpful

Author information

Name: Catherine Tremblay

Birthday: 1999-09-23

Address: Suite 461 73643 Sherril Loaf, Dickinsonland, AZ 47941-2379

Phone: +2678139151039

Job: International Administration Supervisor

Hobby: Dowsing, Snowboarding, Rowing, Beekeeping, Calligraphy, Shooting, Air sports

Introduction: My name is Catherine Tremblay, I am a precious, perfect, tasty, enthusiastic, inexpensive, vast, kind person who loves writing and wants to share my knowledge and understanding with you.