AI agents are already trying to use your API. Give them a real way to discover your product, request access, and operate safely -- without rebuilding your auth stack.
The problem
Autonomous agents are driving a growing wave of SaaS signups. Providers are stuck between two bad options:
• Agent pauses, waits for human
• Human navigates forms, enters payment
• Minutes to hours of idle time
• Dropoff at every step
• CAPTCHAs, anti-bot detection, failures
• Faulty analytics from bot traffic
• Violates Terms of Service
• Ungovernable, unidentifiable accounts
Neither works. Providers need a native, agent-first onboarding channel.
Platform
Plugs into your existing signup page and auth system. No new infrastructure.
A JavaScript snippet on your existing signup page that exposes a machine-readable path for agents. No new pages.
A standard API endpoint where agents request access -- declaring identity, scopes, and their human principal.
The agent's human gets a notification. Review scopes, add payment, approve. One tap.
Plugs into Clerk, Auth0, Stytch, or custom auth to create users and issue API keys once approved.
<!-- Add to your signup page -->
<script src="https://sdk.anon.com/v1.js">
</script>
<script>
Anon.init({
provider: "your-app-id",
auth: "clerk",
scopes: ["api:read", "api:write"],
approvalWebhook:
"https://app.com/api/approve"
});
</script>from anon import AgentClient
client = AgentClient(agent_id="agent-123")
access = client.request_access(
service="bright-data",
scopes=["scraper-api", "serp-api"],
principal="user@company.com",
reason="Price monitoring pipeline"
)
creds = access.wait_for_approval()
resp = requests.get(url, headers=creds)Use cases
Coding agents choose APIs. Autonomous agents need accounts. If they cannot sign up for your product, they will sign up for a competitor.
Coding agents like Cursor and Claude Code pick dependencies by evaluating docs, pricing, and ease of integration.
Be the API that agents recommend
Surface your docs and pricing to machine readers
Convert agent evaluations into real signups
Autonomous agents book travel, manage expenses, configure infrastructure -- and need real accounts to do it.
Let agents onboard without scraping your signup page
Maintain full visibility into agent-created accounts
Enforce scopes and permissions from day one
What you get
Add Anon to your existing auth stack and start converting agent traffic into real, governed accounts.
Agents that would have bounced off your CAPTCHA or picked a competitor now convert into paying accounts.
Every agent-created account is tied to a human principal. You see who is behind every request.
Integrates with Clerk, Auth0, Stytch, or custom auth. One snippet, no migration.
Coming soon
Set agent-specific rate limits, scopes, and usage caps -- separate from your human tier.
See which agents are signing up, where they drop off, and what converts. Optimize like you do for humans.
Get listed in a searchable directory so agents can find your product by capability, not just by name.
Set up your integration in minutes. No new infrastructure required.
Get Started