serp_google_organic_task_post
Submit Google organic search results tasks to analyze keyword rankings across locations, languages, and devices for comprehensive SEO performance monitoring.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| depth | No | Maximum number of results to return | |
| device | No | The device type for the search | |
| keyword | Yes | The search query or keyword | |
| language_code | Yes | The language code for the search | |
| location_code | Yes | The location code for the search | |
| os | No | The operating system for the search | |
| postback_data | No | Custom data to be passed in the callback | |
| postback_url | No | URL to receive a callback when the task is completed | |
| priority | No | Task priority: 1 (normal) or 2 (high) | |
| se_domain | No | Search engine domain (e.g., google.com) | |
| tag | No | Custom identifier for the task |
Input Schema (JSON Schema)
{
"properties": {
"depth": {
"description": "Maximum number of results to return",
"type": "number"
},
"device": {
"description": "The device type for the search",
"enum": [
"desktop",
"mobile",
"tablet"
],
"type": "string"
},
"keyword": {
"description": "The search query or keyword",
"type": "string"
},
"language_code": {
"description": "The language code for the search",
"type": "string"
},
"location_code": {
"description": "The location code for the search",
"type": "number"
},
"os": {
"description": "The operating system for the search",
"enum": [
"windows",
"macos",
"ios",
"android"
],
"type": "string"
},
"postback_data": {
"description": "Custom data to be passed in the callback",
"type": "string"
},
"postback_url": {
"description": "URL to receive a callback when the task is completed",
"type": "string"
},
"priority": {
"description": "Task priority: 1 (normal) or 2 (high)",
"maximum": 2,
"minimum": 1,
"type": "number"
},
"se_domain": {
"description": "Search engine domain (e.g., google.com)",
"type": "string"
},
"tag": {
"description": "Custom identifier for the task",
"type": "string"
}
},
"required": [
"keyword",
"location_code",
"language_code"
],
"type": "object"
}