# Google Search Business Info API (https://www.socialcrawl.dev/platforms/google/business-info) > Returns the full Google Business Profile (Maps / Knowledge Panel) for a local business — name, category, rating, address, phone, coordinates, hours, attributes, and claimed status. Identify the place by keyword, cid, or place_id (cid/place_id are most reliable). Powered by DataForSEO. TL;DR: `GET /v1/google/business/info` costs 1 credit per call and returns SocialCrawl's unified JSON schema. Single x-api-key auth, 100 free credits on signup. ## Parameters | Parameter | Required | Description | | --- | --- | --- | | `keyword` | no | Business name + address (e.g. 'Irving Farm New York 645 5th Ave'). Use cid/place_id when known for an exact match. | | `cid` | no | Google customer id (cid) of the place — the most reliable identifier. | | `place_id` | no | Google place_id of the place. | | `location_name` | no | Geographic context as 'City,Region,Country' (default 'New York,New York,United States'). | | `language_name` | no | Result language (default 'English'). | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/google/business/info" \ -H "x-api-key: sc_YOUR_API_KEY" ``` ## FAQ ### How do I get a Google Business Profile with an API? Send a GET request to /v1/google/business/info identifying the business by keyword, cid, or place_id. SocialCrawl returns the full Google Business Profile — name, category, star rating, address, phone, coordinates, opening hours, attributes, and claimed status — in the unified schema. ### How do I identify which business to fetch? Three ways: pass a keyword (like "Blue Bottle Coffee San Francisco") to match by name and location, a cid (Google's customer ID for a place), or a place_id from Google Maps. Use keyword for discovery and cid or place_id when you already have a stable reference. ### Is this a Google Places API alternative? Yes. SocialCrawl returns the same Knowledge Panel and Maps business data without a Google Cloud project, OAuth consent screen, or per-place quota. The response uses the same schema as every other SocialCrawl platform, so your code stays identical across TikTok, Reddit, and Google. ### Does it tell me if a business is claimed? Yes. The profile includes the claimed status, so you can tell whether an owner has verified the listing. It also returns category, star rating, address, phone, coordinates, opening hours, and the attributes Google shows on the profile, such as accessibility and service options. ### How much does the Google Business Profile API cost? Each profile lookup costs 1 credit, powered by DataForSEO. New accounts get 100 free credits with no credit card required — enough to pull 100 business profiles before you pay, or mix with reviews and hotels endpoints across the same Google surface. See the full Google Search API: https://www.socialcrawl.dev/platforms/google ## Pricing - Standard endpoints: 1 credit per call - Advanced endpoints: 5 credits per call - Premium endpoints: 10 credits per call - 100 free credits on signup, no credit card required. Cached responses cost 0 credits. Credit packs never expire. - Full pricing: https://www.socialcrawl.dev/pricing ## Explore with AI Questions this API answers, phrased for an AI assistant: - What's the best API to get a Google Business Profile without the Places API? - How to fetch Google Maps business data by place_id with an API