LSD

Business Profile

Get a complete Google Business Profile including hours, photos, attributes, categories, service area, and posts.

When to use this

You want to see exactly what your Google Business Profile looks like to customers — your hours, photos, categories, and attributes. Also useful for checking a competitor's profile to see what they're doing differently.

POST/v1/business/profile
Cost: 2 credits ($0.01)
Rate Limit: Varies by plan
Response: ~3-5 seconds

Parameters

ParameterTypeRequiredDescription
business_namestringYesBusiness name
locationstringYesCity and state
place_idstringNoGoogle Place ID (more precise)

Example Request

curl -X POST https://api.localseodata.com/v1/business/profile \
  -H "Authorization: Bearer sk_live_your_key" \
  -H "Content-Type: application/json" \
  -d '{"business_name": "Joe\'s Pizza", "location": "Brooklyn, NY"}'

Example Response

JSON
{
  "status": "success",
  "credits_used": 2,
  "data": {
    "matched": true,
    "name": "Joe's Pizza",
    "rating": 4.6,
    "reviews_count": 847,
    "address": "7 Carmine St, New York, NY 10014",
    "phone": "(212) 366-1182",
    "website": "http://www.joespizzanyc.com",
    "hours": {
      "Monday": "10:00 AM - 4:00 AM",
      "Tuesday": "10:00 AM - 4:00 AM"
    },
    "categories": ["Pizza restaurant"],
    "photos_count": 1247,
    "description": "Famous NY-style pizza since 1975",
    "attributes": ["Dine-in", "Takeout", "No delivery"],
    "cid": "12345678901",
    "place_id": "ChIJ...",
    "verified": true,
    "suggestions": null
  }
}

Response Fields

FieldTypeDescription
matchedbooleanWhether an exact business match was found
namestringBusiness name
addressstringFull street address
phonestringPhone number
websitestringBusiness website URL
ratingfloatAverage star rating
reviews_countintegerTotal reviews
hoursobjectOperating hours by day
categoriesstring[]Business categories
photos_countintegerNumber of photos on the listing
descriptionstringBusiness description from the listing
attributesstring[]Business attributes (dine-in, delivery, etc.)
cidstringGoogle Maps CID identifier
place_idstringGoogle Place ID for exact lookups
verifiedbooleanWhether the business has claimed/verified their listing
suggestionsobject[] | nullUp to 5 similar businesses when matched=false. Each has name, address, rating, reviews_count, place_id, phone, categories.

Notes

  • Use place_id for more precise matching when available.
  • Combine with /v1/business/reviews for complete business intelligence.
  • When no exact match is found, matched=false and suggestions contains up to 5 candidates from Google Maps. Retry with a suggestion's place_id for an exact match.