Skip to main content
The fastest path. Sign up, get an API key, point your tool at the gateway. No infrastructure to manage.

Getting started

1

Sign up

Go to cloud.takumo.io and create an account.
2

Create an organization

After signing in, create a new organization. This is where your team, API keys, policies, and audit log live.
3

Create an API key

Navigate to Settings > API Keys and click Create Key. Give it a name that identifies where it will be used (e.g., cursor-laptop, ci-pipeline). Copy the key immediately — it is shown once.
4

Configure your AI tool

Set the API base URL in your AI tool to:
https://gateway.takumo.io/v1
Set your Takumo API key as the authentication credential. See AI Tools for tool-specific instructions.
5

Set the API key

export TAKUMO_API_KEY="tk_live_your_api_key_here"
Or add it to your .env file:
TAKUMO_API_KEY=tk_live_your_api_key_here
6

Start coding

Secrets are now protected. Every request through the gateway is scanned, tokenized, and logged in the audit trail.

Gateway URL

All requests go through a single endpoint:
https://gateway.takumo.io/v1
This URL replaces the AI provider’s API base URL in your tool configuration. The gateway handles routing to the correct upstream provider based on the request.

What you get

CapabilityDetails
Secret detectionAll supported patterns are active by default
Audit logEvery request is logged with detection results
Rate limitingPer-organization limits based on your plan
Policy enforcementConfigure custom rules in the dashboard
Zero infrastructureTakumo manages the gateway, coordinator, database, and monitoring

Verifying it works

After configuring your tool, send a test request that includes a fake secret:
curl https://gateway.takumo.io/v1/tokenize \
  -H "Authorization: Bearer $TAKUMO_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"content": "const key = \"AKIAIOSFODNN7EXAMPLE\"", "filename": "test.ts"}'
The response should show the secret replaced with a Takumo token. Check the Audit Log in the dashboard to confirm the event was recorded.
SaaS is the right choice for most teams. You get the same protection without managing infrastructure. On-prem is for organizations with strict data residency requirements.