get_authority_scores
Calculate authority scores for multiple URLs to assess their SEO performance. Retrieve metrics like Page Authority (PA) and Domain Authority (DA) for data-driven optimization.
Instructions
Get authority scores for a list of URLs.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
metrics | No | The metrics to retrieve, default is "pa|da". | |
urls | Yes | The list of URLs to check authority scores for. |
Input Schema (JSON Schema)
{
"properties": {
"metrics": {
"description": "The metrics to retrieve, default is \"pa|da\".",
"type": "string"
},
"urls": {
"description": "The list of URLs to check authority scores for.",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"urls"
],
"type": "object"
}