{
  "x402Version": 2,
  "id": 5216,
  "slug": "5216",
  "resource": "https://x402.agentutility.ai/seo-snapshot",
  "description": "Audits a page's on-page SEO in one call: head metadata, link profile, and keyword ideas. Give it a URL and get back head metadata (title, description, canonical, OG/Twitter cards), the internal/external link breakdown, and ranked keyword suggestions seeded from your seed_keyword or the page's own title. One paid call replaces three: ideal for content-gap analysis, SEO audits, competitor page reviews, programmatic SEO pipelines. Composite: one call runs url-metadata-extract + link-extract in parallel, then keyword-suggest seeded from the page title. Use it as an SEO research API for agents.",
  "type": "http",
  "accepts": [
    {
      "scheme": "exact",
      "network": "eip155:8453",
      "payTo": "0x6c0752c09e7F6fA6526fCDf40e456a159ebB5621",
      "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "amount": "40000",
      "maxTimeoutSeconds": 300
    },
    {
      "scheme": "exact",
      "network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
      "payTo": "FJqAJ4dXkFbrp3EEo8E9x98iaBGUQwaU8Srz5ePfUXLH",
      "asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
      "amount": "40000",
      "maxTimeoutSeconds": 300
    }
  ],
  "outputSchema": {
    "bazaar": {
      "discoverable": true,
      "info": {
        "input": {
          "body": {
            "seed_keyword": "markdown editor",
            "url": "https://example.com"
          },
          "bodyType": "json",
          "method": "POST",
          "type": "http"
        },
        "output": {
          "example": {
            "components": [
              {
                "ms": 620,
                "name": "url-metadata-extract",
                "ok": true
              },
              {
                "ms": 710,
                "name": "link-extract",
                "ok": true
              },
              {
                "ms": 480,
                "name": "keyword-suggest",
                "ok": true
              }
            ],
            "composed_of": [
              "url-metadata-extract",
              "keyword-suggest",
              "link-extract"
            ],
            "degraded": false,
            "keywords": {
              "count": 3,
              "suggestions": [
                "markdown editor",
                "markdown editor online",
                "markdown editor mac"
              ]
            },
            "links": {
              "count": 1,
              "external_count": 1,
              "internal_count": 0,
              "items": [
                {
                  "href": "https://www.iana.org/domains/example",
                  "is_external": true,
                  "text": "More information..."
                }
              ]
            },
            "metadata": {
              "canonical": null,
              "description": "",
              "language": "en",
              "og": {},
              "title": "Example Domain",
              "twitter": {}
            },
            "seed_keyword_used": "markdown editor",
            "url": "https://example.com"
          },
          "type": "json"
        }
      },
      "related": [
        "/url-metadata-extract",
        "/keyword-suggest",
        "/link-extract"
      ],
      "schema": {
        "$schema": "https://json-schema.org/draft/2020-12/schema",
        "properties": {
          "input": {
            "additionalProperties": false,
            "properties": {
              "body": {
                "properties": {
                  "seed_keyword": {
                    "description": "Optional keyword seed for suggestions. Defaults to the page title. Max 200 chars.",
                    "type": "string"
                  },
                  "url": {
                    "description": "Page URL to snapshot (http or https). Max 2048 chars.",
                    "type": "string"
                  }
                },
                "required": [
                  "url"
                ]
              },
              "bodyType": {
                "enum": [
                  "json",
                  "form-data",
                  "text"
                ],
                "type": "string"
              },
              "method": {
                "enum": [
                  "POST"
                ],
                "type": "string"
              },
              "type": {
                "const": "http",
                "type": "string"
              }
            },
            "required": [
              "type",
              "method",
              "bodyType",
              "body"
            ],
            "type": "object"
          },
          "output": {
            "properties": {
              "example": {
                "properties": {
                  "components": {
                    "items": {
                      "properties": {
                        "ms": {
                          "type": "integer"
                        },
                        "name": {
                          "type": "string"
                        },
                        "ok": {
                          "type": "boolean"
                        }
                      },
                      "type": "object"
                    },
                    "type": "array"
                  },
                  "composed_of": {
                    "items": {
                      "type": "string"
                    },
                    "type": "array"
                  },
                  "degraded": {
                    "type": "boolean"
                  },
                  "keywords": {
                    "properties": {
                      "count": {
                        "type": "integer"
                      },
                      "suggestions": {
                        "items": {
                          "type": "string"
                        },
                        "type": "array"
                      }
                    },
                    "type": "object"
                  },
                  "links": {
                    "properties": {
                      "count": {
                        "type": "integer"
                      },
                      "external_count": {
                        "type": "integer"
                      },
                      "internal_count": {
                        "type": "integer"
                      },
                      "items": {
                        "items": {
                          "properties": {
                            "href": {
                              "type": "string"
                            },
                            "is_external": {
                              "type": "boolean"
                            },
                            "text": {
                              "type": "string"
                            }
                          },
                          "type": "object"
                        },
                        "type": "array"
                      }
                    },
                    "type": "object"
                  },
                  "metadata": {
                    "properties": {
                      "canonical": {
                        "type": "null"
                      },
                      "description": {
                        "type": "string"
                      },
                      "language": {
                        "type": "string"
                      },
                      "og": {
                        "properties": {},
                        "type": "object"
                      },
                      "title": {
                        "type": "string"
                      },
                      "twitter": {
                        "properties": {},
                        "type": "object"
                      }
                    },
                    "type": "object"
                  },
                  "seed_keyword_used": {
                    "type": "string"
                  },
                  "url": {
                    "type": "string"
                  }
                },
                "type": "object"
              },
              "type": {
                "type": "string"
              }
            },
            "required": [
              "type"
            ],
            "type": "object"
          }
        },
        "required": [
          "input"
        ],
        "type": "object"
      }
    },
    "builder-code": {
      "info": {
        "a": "bc_awpbwsy3"
      },
      "schema": {
        "$schema": "https://json-schema.org/draft/2020-12/schema",
        "additionalProperties": false,
        "properties": {
          "a": {
            "description": "App builder code",
            "pattern": "^[a-z0-9_]{1,32}$",
            "type": "string"
          },
          "s": {
            "description": "Service builder codes",
            "items": {
              "pattern": "^[a-z0-9_]{1,32}$",
              "type": "string"
            },
            "type": "array"
          },
          "w": {
            "description": "Wallet builder code",
            "pattern": "^[a-z0-9_]{1,32}$",
            "type": "string"
          }
        },
        "type": "object"
      }
    }
  },
  "tags": [
    "bazaar",
    "builder-code"
  ],
  "sourceHost": "x402.agentutility.ai",
  "lastUpdated": "2026-09-10T03:30:47.557Z",
  "quality": {
    "calls30d": 1,
    "uniquePayers30d": 1,
    "lastCalledAt": "2026-09-10T03:30:47.255Z"
  },
  "liveness": {},
  "verified": false,
  "featured": false,
  "provider": {
    "host": "x402.agentutility.ai",
    "manifest_name": "x402.agentutility.ai",
    "source": "cdp-mirror",
    "source_manifest_url": "https://api.cdp.coinbase.com/platform/v2/x402/discovery/resources",
    "submitted_at": "2026-09-18T22:00:31.484Z"
  }
}