Why agent access?
The fastest creators in 2027 don't operate Double You by hand. They have an agent — Claude, GPT-5, Cursor, custom — that reads their calendar, sees what they shipped this morning, decides what to ship next, and dispatches to the clone. Double You is built for that flow.
Quick start
- Open Settings → API Keys
- Create a key with scope
publish - Give your agent the key + the OpenAPI spec at
api.getdoubleyou.com/openapi.json
Example — a Claude operator
// Tool definition
{
"name": "schedule_post",
"description": "Generate and schedule a post using my clone.",
"input_schema": {
"platform": "tiktok | instagram | youtube | x | linkedin | threads",
"topic": "string",
"scene": "string",
"publish_at": "ISO 8601 timestamp"
}
}
// Agent call
POST https://api.getdoubleyou.com/v1/generations
Authorization: Bearer dy_publish_xxx
{
"scene": "rooftop", "prompt": "morning thoughts on leverage",
"publish_to": ["x", "threads"],
"schedule_at": "2027-05-24T08:00:00Z"
}
Safety rails
Every agent-published post is signed, watermarked, and tagged with the agent's key ID. Your followers can verify provenance via C2PA. You can revoke any key in one click and immediately recall its scheduled content.
Pricing
Agent access is included on the Studio plan and above. Starter and Creator plans get read-only API access — useful for dashboards, not for autonomous operation.