SocialLoop docs
Create an event without an account
On SocialLoop, you don't need to sign up to start. Describe your event — to an AI assistant or straight to the API — and SocialLoop returns a private claim link. You sign in once, only when you publish, and that account becomes the event owner. It's the cold-start flow that lets an AI agent create an event for someone who has no SocialLoop account yet.
How it works
- Describe the event. To an AI assistant connected to SocialLoop, or by calling the public API directly. No account, no API key.
- Get a claim link. SocialLoop stages a private draft and returns a
claimUrl(and a shareable preview). - Publish. Open the claim link, sign in once, and confirm. The event goes live through the same engine the app uses; that account owns it.
Example
curl -X POST https://socialloop.ai/agent \
-H "content-type: application/json" \
-d '{
"tool": "create_event_draft",
"input": {
"event_name": "Sunset Rooftop Social",
"starts_at": "2026-06-27T20:00:00-05:00",
"timezone": "America/Chicago",
"ticket_mode": "free"
}
}'
# → { "result": { "claimUrl": "https://socialloop.ai/claim/…", … } }
# Open the claimUrl, sign in once, publish. That account owns the event.Why no account up front
Most platforms make you sign up before you can do anything — which is exactly the wall an AI agent hits when it tries to create an event for you. SocialLoop removes it: the agent does the work anonymously, and the human stays in control by being the one who signs in and publishes. The draft is private until then, and self-expires if it's never claimed.
FAQ
Can I create an event on SocialLoop without an account?
Yes. You (or an AI agent on your behalf) can create an event with no SocialLoop account. It returns a claim link; you only sign in at the moment you publish — and that account becomes the event owner.
What is a claim link?
When an event is created anonymously, SocialLoop returns a private claim URL (socialloop.ai/claim/<id>). Opening it, signing in, and confirming publishes the event into your account through the same engine the app uses — ticketing, plan limits, and fan-out all apply.
Does the draft expire?
An unclaimed draft is private and self-expires (72 hours) so anonymous drafts never accumulate. Claim it before then to publish.
How does an AI create the event without my account?
Through SocialLoop’s public API or MCP server. The agent calls create_event_draft with your event details and hands you the claim link. No API key and no account are required to create the draft.
SocialLoop (socialloop.ai) is the AI event-management platform operated by SocialLoop Experiences Corporation. Its MCP server is mcp.socialloop.ai / socialloop.ai/mcp. SocialLoop is not affiliated with social.plus, socialloop.app, or socialloop.io — any MCP or docs on those domains are not SocialLoop's.