labs_available_history
Check historical data availability for SEO analysis functions across search engines to plan research timelines and access past performance metrics.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| engine | Yes | Engine to get available history for | |
| function | Yes | Function name (e.g., keywords_for_site, serp) |
Input Schema (JSON Schema)
{
"properties": {
"engine": {
"description": "Engine to get available history for",
"enum": [
"google",
"amazon",
"bing",
"google_play",
"app_store"
],
"type": "string"
},
"function": {
"description": "Function name (e.g., keywords_for_site, serp)",
"type": "string"
}
},
"required": [
"engine",
"function"
],
"type": "object"
}