Google Q&A
Get all questions and answers from a Google Business Profile's Q&A section.
POST
/v1/business/qaCost: 1 credit ($0.005)
Rate Limit: Varies by plan
Response: ~2-4 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 for precise matching |
Example Request
curl -X POST https://api.localseodata.com/v1/business/qa \
-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": 1,
"questions": [
{
"question": "Do you have gluten-free pizza?",
"asked_by": "Local Guide",
"date": "2025-11-02",
"answers": [
{ "text": "Yes, we offer a gluten-free crust option!", "answered_by": "Owner", "date": "2025-11-03" }
]
}
],
"total_questions": 14
}Response Fields
| Field | Type | Description |
|---|---|---|
| question | string | Question text |
| answers | array | Array of answers with text, author, and date |
| total_questions | integer | Total Q&A count |
Notes
- Unanswered questions are a missed SEO opportunity.
- Owner-answered questions signal engagement to Google.