Backlink Spam Score API

SEO API documentation for REST and MCP, generated from the implemented API contract.

API selector
Backlinks & Authority

API overview

Bounded domain and page targetSpamScore values from the DataForSEO backlink index. Independently callable bulk interface sharing source facts with backlink overview. No new independent authority fact is claimed. Unknown costs remain unapproved. No pagination or extra lookup.

Try this API
Endpoint
/api/skill-api/v1/skills/seo-backlink-spam-scores/run
MCP method
nexscope_seo_backlink_spam_scores

Authentication

All run endpoints require a user API key. Send it as a bearer token in the Authorization header.

Authorization: Bearer nk_xxxxxxxxxxxxxxxxx
Missing or invalid API keys return an authentication error. Manage keys from .
POST/api/skill-api/v1/skills/seo-backlink-spam-scores/run

Run an API

Send a JSON request body using the parameters described below.

Slugseo-backlink-spam-scores
HeadersAuthorization: Bearer nk_...
Content-Type: application/json
Request bodyAPI-specific JSON object.
Response bodyComplete HTTP envelope, including code and data.

Status codes

CodeDescription
200API executed successfully. Body is the direct response payload.
400Request JSON or required API parameters are invalid.
401API key is missing, invalid, or cannot be matched to a user.
5xxAPI execution or upstream service failed.

Example request

curl -X POST https://api.nexscope.ai/api/skill-api/v1/skills/seo-backlink-spam-scores/run \
  -H "Authorization: Bearer nk_xxxxxxxxxxxxxxxxx" \
  -H "Content-Type: application/json" \
  -d '{   "targets": [     {       "kind": "DOMAIN",       "target": "example"     }   ] }'
All categories/ Backlinks & Authority

MCP

Use the MCP endpoint when an agent needs to discover and call API tools with JSON-RPC.

GET /api/skill-api/v1/mcp
POST /api/skill-api/v1/mcp
Authorization: Bearer nk_xxxxxxxxxxxxxxxxx
Content-Type: application/json

Call a tool

{
  "jsonrpc": "2.0",
  "id": "tool-call-1",
  "method": "tools/call",
  "params": {
    "name": "nexscope_seo_backlink_spam_scores",
    "arguments": {
      "targets": [
        {
          "kind": "DOMAIN",
          "target": "example"
        }
      ]
    }
  }
}

Online test

Execute the current API with your API key and JSON payload.

Try it

Send a real request with the same contract shown in the reference.

Endpoint
/api/skill-api/v1/skills/seo-backlink-spam-scores/run
MCP method
nexscope_seo_backlink_spam_scores
cURL
curl -X POST \
  https://api.nexscope.ai/api/skill-api/v1/skills/seo-backlink-spam-scores/run \
  -H "Authorization: Bearer nk-..." \
  -H "Content-Type: application/json" \
  -d '{ "targets": [ { "kind": "DOMAIN", "target": "example" } ] }'
Response
No response yet. Run the request to see the response here.