On-page SEO audit for any live URL
On-page SEO audit for any live URL. Returns a 0-100 SEO score plus the raw signals behind it: title tag and meta description with their lengths, canonical URL, robots directives, the full H1-H3 heading map, image alt-text coverage, Open Graph and Twitter card completeness, and whether schema.org structured data is present. Fetches the live page on every call, so results reflect the page as it is now. Use it to audit a landing page, diagnose weak search rankings, or inspect a competitor.
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
GET https://seo.cyberwarex.com/audit
| Category | Image and media |
|---|---|
| Provider host | seo.cyberwarex.com |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 33 from 2 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.01 | 1326 ms |
Example input (from the provider)
{
"method": "GET",
"queryParams": {
"url": "https://example.com"
},
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"additionalProperties": false,
"properties": {
"url": {
"description": "Absolute http(s) URL of the page to audit.",
"format": "uri",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"canonical": {
"type": [
"string",
"null"
]
},
"h1_h3_map": {
"description": "Arrays of h1, h2 and h3 heading text.",
"type": "object"
},
"image_alt_coverage": {
"description": "total_images, with_alt, missing_alt, coverage_pct.",
"type": "object"
},
"meta_description": {
"type": [
"string",
"null"
]
},
"meta_description_length": {
"type": "integer"
},
"og_twitter_complete": {
"type": "boolean"
},
"robots": {
"type": [
"string",
"null"
]
},
"schema_org_present": {
"type": "boolean"
},
"score": {
"description": "Overall on-page SEO score, 0-100.",
"type": "integer"
},
"title": {
"type": [
"string",
"null"
]
},
"title_length": {
"type": "integer"
},
"url": {
"type": "string"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}