Google Question Search
Google Question Search is used to fetch related-question suggestions from Google.
- Fetch related question terms by keyword
- Support region-based result environments
- Return keyword-to-question mappings
- Suitable for topic expansion and long-tail question discovery
Use XCrawl to Fetch Google Related Questions
Usage
curl -s -X POST 'https://run.xcrawl.com/v1/data' \
-H 'Authorization: Bearer $XCRAWL_API_KEY' \
-H 'Content-Type: application/json' \
-d '{
"engine": "google_question_search",
"location": "US",
"keyword_list": ["food", "fish"]
}'Request parameter notes:
enginemust begoogle_question_searchlocationspecifies the target regionkeyword_listaccepts one or more keywords
Response Example
{
"result": [
{
"food": [
{
"word": "Food near me",
"word_link": "https://www.google.com/search?q=Food+near+me"
}
]
},
{
"fish": [
{
"word": "Fish price",
"word_link": "https://www.google.com/search?q=Fish+price"
}
]
}
]
}Parameters
Required Parameters
| Parameter | Type | Description |
|---|---|---|
location | string | Specifies the target region. |
keyword_list | array | Accepts one or more keywords. |
Parameter Notes
locationdefaults toUS- Each item in
keyword_listreturns a dedicated related-question list
Response Fields
Response data is returned under result[]. Each item is a mapping object from a keyword to its related-question list.
| Field | Type | Description |
|---|---|---|
{keyword} | array | The related-question list for the current keyword. |
Suggestion Fields
Each item in {keyword}[] includes:
| Field | Type | Description |
|---|---|---|
word | string | Suggested question or query term. |
word_link | string | Google search URL for the suggestion. |
