Google Q&A

Get all questions and answers from a Google Business Profile's Q&A section.

POST/v1/business/qa
Cost: 1 credit ($0.005)
Rate Limit: Varies by plan
Response: ~2-4 seconds

Parameters

ParameterTypeRequiredDescription
business_namestringYesBusiness name
locationstringYesCity and state
place_idstringNoGoogle 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

FieldTypeDescription
questionstringQuestion text
answersarrayArray of answers with text, author, and date
total_questionsintegerTotal Q&A count

Notes

  • Unanswered questions are a missed SEO opportunity.
  • Owner-answered questions signal engagement to Google.