ToolAssay

Sends one prompt to one search assistant (Perplexity, OpenAI or Gemini) and repo

Sends one prompt to one search assistant (Perplexity, OpenAI or Gemini) and reports whether it cites your target domains: cited status, citation count, cited domains, model, and a structured error. For Claude, or several engines in one call, use citation_tracker_check. Paid, $0.15/call; read-only…

Not tested: has real-world effectsour last check, 2026-09-26
0 of 0checks answered this week
n/amedian answer time
$0.15listed price per call
n/aprice it asked us

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

POST https://citation-tracker.pixelcove.co/v1/check-one

CategorySearch and research
Provider hostcitation-tracker.pixelcove.co
Networkseip155:8453
Payment schemesexact
Self-reported calls, 30 days1 from 1 payers (the provider's figure, not ours)

Our checks, last 30 days

We never call tools that send, buy, move money or file anything, not even without paying.

Example input (from the provider)

{
  "body": {
    "engines": [
      "perplexity"
    ],
    "prompt": "example",
    "targets": [
      "example.com"
    ]
  },
  "bodyType": "json",
  "method": "POST",
  "type": "http"
}

Promised output schema (from the provider)

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "input": {
      "additionalProperties": false,
      "properties": {
        "body": {
          "additionalProperties": false,
          "properties": {
            "engines": {
              "description": "Exactly one engine: perplexity, openai, or gemini.",
              "items": {
                "enum": [
                  "perplexity",
                  "openai",
                  "gemini"
                ],
                "type": "string"
              },
              "maxItems": 1,
              "minItems": 1,
              "type": "array"
            },
            "prompt": {
              "description": "The prompt to send to the search assistant(s), verbatim. 1 to 4000 characters.",
              "maxLength": 4000,
              "minLength": 1,
              "type": "string"
            },
            "targets": {
              "description": "1 to 10 target domains to check for a citation.",
              "items": {
                "description": "A normalized domain, e.g. example.com (no scheme, no path, no whitespace, lowercase).",
                "maxLength": 253,
                "minLength": 1,
                "pattern": "^(?:[a-z0-9](?:[a-z0-9-]{0,61}[a-z0-9])?\\.)+[a-z]{2,63}$",
                "type": "string"
              },
              "maxItems": 10,
              "minItems": 1,
              "type": "array"
            }
          },
          "required": [
            "prompt",
            "engines",
            "targets"
          ],
          "type": "object"
        },
        "bodyType": {
          "enum": [
            "json",
            "form-data",
            "text"
          ],
          "type": "string"
        },
        "method": {
          "enum": [
            "POST",
            "PUT",
            "PATCH"
          ],
          "type": "string"
        },
        "type": {
          "const": "http",
          "type": "string"
        }
      },
      "required": [
        "type",
        "method",
        "bodyType",
        "body"
      ],
      "type": "object"
    },
    "output": {
      "properties": {
        "example": {
          "type": "object"
        },
        "type": {
          "type": "string"
        }
      },
      "required": [
        "type"
      ],
      "type": "object"
    }
  },
  "required": [
    "input"
  ],
  "type": "object"
}

This page as JSON