validate_performance_pagespeed
Analyze website performance using Google PageSpeed Insights to measure Core Web Vitals and performance scores for mobile or desktop devices.
Instructions
Analyze website performance using Google PageSpeed Insights. Returns Core Web Vitals and performance scores. Free API with 25K requests/day.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
apiKey | No | Optional API key for higher quota | |
strategy | No | Device type (default: mobile) | |
url | Yes | The URL to analyze |
Input Schema (JSON Schema)
{
"properties": {
"apiKey": {
"description": "Optional API key for higher quota",
"type": "string"
},
"strategy": {
"description": "Device type (default: mobile)",
"enum": [
"mobile",
"desktop"
],
"type": "string"
},
"url": {
"description": "The URL to analyze",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}