Skip to main content
Visibility

Check whether AI models mention a brand for a prompt

View Markdown

Runs a prompt across the selected AI engines (ChatGPT, Claude, Gemini, Perplexity) and reports whether the brand is mentioned, its position, and cited sources. Costs 3 credits per engine.

POST/v1/visibility/

Authorization

accessKey
x-access-key<token>

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X POST "https://example.com/v1/visibility/" \  -H "Content-Type: application/json" \  -d '{    "brand": "string",    "prompt": "string"  }'
{
  "success": true,
  "credits": {
    "charged": 0,
    "remaining": 0
  },
  "data": {
    "brand": "string",
    "prompt": "string",
    "mentioned_in": [
      "string"
    ],
    "results": [
      {
        "engine": "string",
        "model": "string",
        "mentioned": true,
        "position": null,
        "sources": [
          "string"
        ],
        "answer": "string"
      }
    ]
  }
}
{
  "success": false,
  "message": "string"
}
{
  "success": false,
  "message": "string"
}
{
  "success": false,
  "message": "string"
}
{
  "success": false,
  "message": "string"
}