Ad Transparency API

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

API selector
Ad Intelligence

API overview

Google Search transparency records over the provider default history. Nullable fields preserve missing evidence. Provider observations and estimates do not establish actual account performance. No additional calls or fallback.

Try this API
Endpoint
/api/skill-api/v1/skills/seo-ad-transparency-search/run
MCP method
nexscope_seo_ad_transparency_search

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-ad-transparency-search/run

Run an API

Send a JSON request body using the parameters described below.

Slugseo-ad-transparency-search
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-ad-transparency-search/run \
  -H "Authorization: Bearer nk_xxxxxxxxxxxxxxxxx" \
  -H "Content-Type: application/json" \
  -d '{   "limit": 20,   "target": "example" }'
All categories/ Ad Intelligence

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_ad_transparency_search",
    "arguments": {
      "limit": 20,
      "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-ad-transparency-search/run
MCP method
nexscope_seo_ad_transparency_search
cURL
curl -X POST \
  https://api.nexscope.ai/api/skill-api/v1/skills/seo-ad-transparency-search/run \
  -H "Authorization: Bearer nk-..." \
  -H "Content-Type: application/json" \
  -d '{ "limit": 20, "target": "example" }'
Response
No response yet. Run the request to see the response here.