Business Profile

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

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,
  "profile": {
    "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"],
    "attributes": ["Dine-in", "Takeout", "No delivery"],
    "photos_count": 1247,
    "posts": []
  }
}

Response Fields

FieldTypeDescription
namestringBusiness name
ratingfloatAverage star rating
reviews_countintegerTotal reviews
hoursobjectOperating hours by day
categoriesstring[]Business categories
attributesstring[]Business attributes (dine-in, delivery, etc.)

Notes

  • Use place_id for more precise matching when available.
  • Combine with /v1/business/reviews for complete business intelligence.