Checks whether ChatGPT would search the web for one prompt and whether its first search qu
Checks whether ChatGPT would search the web for one prompt and whether its first search query names any of your supplied brand or product terms (whole-word match). Use it to gate a prompt before spending on citation_tracker_check. Paid, $0.20/call; read-only and safe to retry.
200000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-01
updated
Provider
citation-tracker.pixelcove.co · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x88ff5A0608Ff45077f68200AF35618121a0FA443",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "200000",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"brand_terms": [
"example.com"
],
"prompt": "example"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"fanout": [
"Acme pricing vs competitors"
],
"hits": [
"Acme"
],
"searched": true
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"brand_terms": {
"description": "1 to 20 brand terms to look for in the first search query.",
"items": {
"maxLength": 100,
"minLength": 1,
"type": "string"
},
"maxItems": 20,
"minItems": 1,
"type": "array"
},
"product_terms": {
"default": [],
"description": "0 to 50 product terms to look for in the first search query.",
"items": {
"maxLength": 100,
"minLength": 1,
"type": "string"
},
"maxItems": 50,
"minItems": 0,
"type": "array"
},
"prompt": {
"description": "The prompt to send to the search assistant(s), verbatim. 1 to 4000 characters.",
"maxLength": 4000,
"minLength": 1,
"type": "string"
}
},
"required": [
"prompt",
"brand_terms"
],
"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"
}
}
}Use it
curl
curl "https://citation-tracker.pixelcove.co/v1/shortlist-gate" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://citation-tracker.pixelcove.co/v1/shortlist-gate");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://citation-tracker.pixelcove.co/v1/shortlist-gate")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/9110.json, and this resource appears in /discovery/resources and /discovery/search.