S6S Documentation

AI Visibility monitoring is the front-door product — see how AI engines mention, cite, and recommend your brand. The S6S workflow engine sits underneath and is also available as a developer playground.

AI Visibility

Cloud

Track whether ChatGPT, Gemini, and Perplexity mention and recommend your brand. One click runs the report; results are separated into AI Visibility, Agent Search Visibility, and Local & Maps, with a focus recommendation and source readiness explanation.

Try AI Visibility in 30 seconds

Drop in a domain and get a free audit — no signup. Then create a brand to track engine results over time.

Developer playground

The S6S workflow engine powers AI Visibility fixes, discovery, and monitoring underneath the product — and it's exposed as a developer surface for anyone who wants to build agents on top. Deploy via REST, SDK, or MCP; run on S6S Cloud or self-hosted.

POST https://s6s.ai/api/v1/workflows/deploy
curl -X POST https://s6s.ai/api/v1/workflows/deploy \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Hello World",
    "trigger": { "type": "manual" },
    "steps": [
      {
        "ref": "greet",
        "action": "transform",
        "config": { "template": { "message": "Hello from S6S!" } }
      }
    ],
    "flow": ["greet"]
  }'