SpyFu · Schema

SpyFu Competitors API Schemas

JSON Schema definitions for SpyFu Competitors API API responses

SEOPPCCompetitive IntelligenceKeyword ResearchAd HistoryBacklinksDomain AnalyticsSERP
View JSON Schema on GitHub

JSON Schema

spyfu-competitors-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "SpyFu Competitors API Schemas",
  "description": "JSON Schema definitions for SpyFu Competitors API API responses",
  "definitions": {
    "CompetitorsApi_GetTopPpcCompetitors_GET": {
      "$schema": "http://json-schema.org/draft-07/schema#",
      "title": "Get Top PPC Competitors",
      "description": "Response wrapper containing competitor analysis data for a specific search channel (SEO or PPC) with pagination metadata.",
      "type": "object",
      "properties": {
        "resultCount": {
          "description": "Number of results returned",
          "type": "integer",
          "format": "int32",
          "examples": [
            50
          ],
          "readOnly": true
        },
        "totalMatchingResults": {
          "description": "Total number of competitor domains available that match the query criteria, including results not included in the current page.",
          "type": "integer",
          "format": "int64",
          "examples": [
            2500
          ],
          "readOnly": true
        },
        "results": {
          "description": "Array of competitor domains ranked by keyword overlap strength in the specified search channel.",
          "type": [
            "array",
            "null"
          ],
          "items": {
            "type": "object",
            "properties": {
              "domain": {
                "description": "Domain name of the competitor that shares significant keyword overlap in the specified search channel (SEO or PPC).",
                "type": [
                  "string",
                  "null"
                ],
                "examples": [
                  "example.com"
                ]
              },
              "commonTerms": {
                "description": "Number of unique keywords that both this competitor domain and the target domain compete for in the same search channel.",
                "type": "integer",
                "format": "int32",
                "examples": [
                  1432
                ]
              },
              "rank": {
                "description": "The rank is a metric for how much overlap there is between your domain and the competitor",
                "type": "number",
                "format": "float"
              }
            },
            "additionalProperties": false,
            "description": "Represents a competitor domain with shared keyword overlap data, indicating the strength of competitive relationship in either paid or organic search."
          },
          "readOnly": true
        }
      },
      "additionalProperties": false
    },
    "CompetitorsApi_GetTopSeoCompetitors_GET": {
      "$schema": "http://json-schema.org/draft-07/schema#",
      "title": "Get Top SEO Competitors",
      "description": "Response wrapper containing competitor analysis data for a specific search channel (SEO or PPC) with pagination metadata.",
      "type": "object",
      "properties": {
        "resultCount": {
          "description": "Number of results returned",
          "type": "integer",
          "format": "int32",
          "examples": [
            50
          ],
          "readOnly": true
        },
        "totalMatchingResults": {
          "description": "Total number of competitor domains available that match the query criteria, including results not included in the current page.",
          "type": "integer",
          "format": "int64",
          "examples": [
            2500
          ],
          "readOnly": true
        },
        "results": {
          "description": "Array of competitor domains ranked by keyword overlap strength in the specified search channel.",
          "type": [
            "array",
            "null"
          ],
          "items": {
            "type": "object",
            "properties": {
              "domain": {
                "description": "Domain name of the competitor that shares significant keyword overlap in the specified search channel (SEO or PPC).",
                "type": [
                  "string",
                  "null"
                ],
                "examples": [
                  "example.com"
                ]
              },
              "commonTerms": {
                "description": "Number of unique keywords that both this competitor domain and the target domain compete for in the same search channel.",
                "type": "integer",
                "format": "int32",
                "examples": [
                  1432
                ]
              },
              "rank": {
                "description": "The rank is a metric for how much overlap there is between your domain and the competitor",
                "type": "number",
                "format": "float"
              }
            },
            "additionalProperties": false,
            "description": "Represents a competitor domain with shared keyword overlap data, indicating the strength of competitive relationship in either paid or organic search."
          },
          "readOnly": true
        }
      },
      "additionalProperties": false
    },
    "CompetitorsApi_GetCombinedTopCompetitors_GET": {
      "$schema": "http://json-schema.org/draft-07/schema#",
      "title": "Get Combined Top Competitors",
      "description": "Response wrapper containing comprehensive competitor analysis data across both paid and organic search channels with pagination metadata.",
      "type": "object",
      "properties": {
        "resultCount": {
          "description": "Number of results returned",
          "type": "integer",
          "format": "int32",
          "examples": [
            50
          ],
          "readOnly": true
        },
        "totalMatchingResults": {
          "description": "Total number of competitor domains available that match the query criteria, including results not included in the current page.",
          "type": "integer",
          "format": "int64",
          "examples": [
            5000
          ],
          "readOnly": true
        },
        "combinedCompetitors": {
          "description": "Array of competitor domains ranked by combined SEO and PPC keyword overlap strength.",
          "type": [
            "array",
            "null"
          ],
          "items": {
            "type": "object",
            "properties": {
              "rank": {
                "description": "Competitive ranking score indicating the strength of overlap between this competitor and the target domain across both SEO and PPC keywords.",
                "type": "number",
                "format": "float",
                "examples": [
                  1
                ]
              },
              "domain": {
                "description": "Domain name of the competitor that shares significant keyword overlap in both paid and organic search results.",
                "type": [
                  "string",
                  "null"
                ],
                "examples": [
                  "example.com"
                ]
              }
            },
            "additionalProperties": false,
            "description": "Represents a competitor domain that competes for similar keywords in both paid and organic search, ranked by competitive overlap strength."
          },
          "readOnly": true
        },
        "ppcCompetitors": {
          "description": "Array of competitor domains ranked by paid search advertising keyword overlap and competitive strength.",
          "type": [
            "array",
            "null"
          ],
          "items": {
            "type": "object",
            "properties": {
              "domain": {
                "description": "Domain name of the competitor that shares significant keyword overlap in the specified search channel (SEO or PPC).",
                "type": [
                  "string",
                  "null"
                ],
                "examples": [
                  "example.com"
                ]
              },
              "commonTerms": {
                "description": "Number of unique keywords that both this competitor domain and the target domain compete for in the same search channel.",
                "type": "integer",
                "format": "int32",
                "examples": [
                  1432
                ]
              },
              "rank": {
                "description": "The rank is a metric for how much overlap there is between your domain and the competitor",
                "type": "number",
                "format": "float"
              }
            },
            "additionalProperties": false,
            "description": "Represents a competitor domain with shared keyword overlap data, indicating the strength of competitive relationship in either paid or organic search."
          },
          "readOnly": true
        },
        "seoCompetitors": {
          "description": "Array of competitor domains ranked by organic search keyword overlap and SEO competitive strength.",
          "type": [
            "array",
            "null"
          ],
          "items": {
            "type": "object",
            "properties": {
              "domain": {
                "description": "Domain name of the competitor that shares significant keyword overlap in the specified search channel (SEO or PPC).",
                "type": [
                  "string",
                  "null"
                ],
                "examples": [
                  "example.com"
                ]
              },
              "commonTerms": {
                "description": "Number of unique keywords that both this competitor domain and the target domain compete for in the same search channel.",
                "type": "integer",
                "format": "int32",
                "examples": [
                  1432
                ]
              },
              "rank": {
                "description": "The rank is a metric for how much overlap there is between your domain and the competitor",
                "type": "number",
                "format": "float"
              }
            },
            "additionalProperties": false,
            "description": "Represents a competitor domain with shared keyword overlap data, indicating the strength of competitive relationship in either paid or organic search."
          },
          "readOnly": true
        }
      },
      "additionalProperties": false
    }
  }
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/spyfu-competitors"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.