search_single_term
Retrieve 'People Also Ask' questions for a single search term to optimize SEO and content strategy. Specify language, region, and depth for targeted results.
Instructions
Search for PAA questions for a single term (convenience method)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
depth | No | Depth of question hierarchy | |
language | No | Language code | en |
latitude | No | Latitude for geographic targeting | |
longitude | No | Longitude for geographic targeting | |
region | No | Region code | us |
term | Yes | Single search term |
Input Schema (JSON Schema)
{
"properties": {
"depth": {
"default": 2,
"description": "Depth of question hierarchy",
"maximum": 3,
"minimum": 1,
"type": "integer"
},
"language": {
"default": "en",
"description": "Language code",
"type": "string"
},
"latitude": {
"description": "Latitude for geographic targeting",
"type": "number"
},
"longitude": {
"description": "Longitude for geographic targeting",
"type": "number"
},
"region": {
"default": "us",
"description": "Region code",
"type": "string"
},
"term": {
"description": "Single search term",
"type": "string"
}
},
"required": [
"term"
],
"type": "object"
}