Business Profile
Get a complete Google Business Profile including hours, photos, attributes, categories, service area, and posts.
POST
/v1/business/profileCost: 2 credits ($0.01)
Rate Limit: Varies by plan
Response: ~3-5 seconds
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| business_name | string | Yes | Business name |
| location | string | Yes | City and state |
| place_id | string | No | Google 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
| Field | Type | Description |
|---|---|---|
| name | string | Business name |
| rating | float | Average star rating |
| reviews_count | integer | Total reviews |
| hours | object | Operating hours by day |
| categories | string[] | Business categories |
| attributes | string[] | 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.