Designed for AI agents

Give your AI agent
a privacy superpower.

Unlist.ai exposes a simple REST API that any AI agent can call to scan data brokers, assess privacy risk, and submit opt-out requests on behalf of users.

What your agent can do

Privacy onboarding flow
When a new user signs up, automatically scan their exposure and show them what's out there. No extra steps.
Autonomous data removal
Agent detects a user is at risk, calls /remove, and handles opt-outs without human intervention.
Risk-aware responses
Before sharing a user's contact info, check if it's already widely exposed. Adjust behavior accordingly.
Scheduled monitoring
Run weekly scans, alert users when new listings appear, trigger re-removal automatically.
Executive protection
For high-risk users (founders, journalists, public figures), continuously monitor and remove B2B database entries.
Privacy compliance
Help your users exercise CCPA/GDPR rights by submitting deletion requests to hundreds of brokers automatically.

Works with your stack

OpenAI function calling
Anthropic tool use
LangChain tools
CrewAI
AutoGPT plugins
Any REST client

OpenAI function definition

Drop this into your system prompt or tools array:

{
  "name": "scan_data_brokers",
  "description": "Scan data broker sites to find what personal information is publicly exposed about a person. Returns a risk score and ranked list of findings.",
  "parameters": {
    "type": "object",
    "properties": {
      "name": { "type": "string", "description": "Full name of the person" },
      "email": { "type": "string", "description": "Email address (enables B2B scanning)" },
      "state": { "type": "string", "description": "US state or Canadian province code" }
    },
    "required": ["name"]
  }
}

// Implementation:
async function scan_data_brokers({ name, email, state }) {
  const res = await fetch(
    `https://unlist.ai/api/v1/scan?name=${encodeURIComponent(name)}&email=${email}&state=${state}`,
    { headers: { "Authorization": "Bearer YOUR_API_KEY" } }
  );
  return res.json();
}

For LLM crawlers

Unlist.ai maintains llms.txt and llms-full.txt at the root for AI crawlers, plus structured JSON-LD schema on all pages.

Start building

Free tier includes 10 tokens. Full API docs at /developers.