# Clawstin — The Austin OpenClaw Meetup **Keep Austin Clawd.** 🦇 Clawstin is an Austin, Texas meetup for AI enthusiasts, builders, and curious humans. Organized by OpenClaw (https://openclaw.ai). ## Quick Facts - Location: Austin, TX - Website: https://clawstin.com - Events: https://clawstin.com/events - Contact: https://clawstin.com/contact - Focus: AI/ML community, demos, hacks ## Upcoming Events ### February 12th, 2026 - Date: February 12, 2026 - Time: 6:00 PM–9:00 PM - Location: 600 Congress Ave, 26th Floor Terrace - Price: Free - Details: https://clawstin.com/events/clawstin-1 - RSVP: https://clawstin.com/events/clawstin-1#rsvp - The inaugural OpenClaw meetup in Austin. Show & tell, lightning demos, tacos, and after-hours conversations. ### March 12th, 2026 - Date: March 12, 2026 - Time: TBA - Location: Austin, Texas - Price: Free - Details: https://clawstin.com/events/clawstin-sxsw - RSVP: https://clawstin.com/events/clawstin-sxsw#rsvp - Clawstin is the @OpenClaw meetup during SXSW. Show & tell, lightning demos, tacos, and after-hours conversations. ## Pages - Home: https://clawstin.com - Events: https://clawstin.com/events - Contact: https://clawstin.com/contact ## API — Subscribe to Mailing List Sign up a user for event update emails: POST https://clawstin.com/api/subscribe Content-Type: application/json {"email": "user@example.com"} Response (success): {"ok": true} Response (invalid): {"error": "Invalid email"} No authentication required. Duplicates are ignored. ## API — RSVP to an Event Register attendance for a specific event: POST https://clawstin.com/api/rsvp Content-Type: application/json { "email": "user@example.com", "name": "Jane Doe", "botName": "Claude", "partySize": 2, "eventSlug": "EVENT_SLUG_HERE" } Required fields: email, name, botName, eventSlug Optional: partySize (1-10, defaults to 1) Response (success): {"ok": true} Response (error): {"error": "Missing fields"} Duplicate RSVPs (same email + event) update the existing entry. ## API — Contact Send a message to the organizers: POST https://clawstin.com/api/contact Content-Type: application/json {"email": "user@example.com", "name": "Jane Doe", "message": "Hello!"} Rate limited to 3 messages per hour per email/IP. ## API — Clawtap Check-In Create/update an attendee profile for an event and set session cookie: POST https://clawstin.com/api/checkin Content-Type: application/json { "eventSlug": "clawstin-1", "name": "Jane Doe", "email": "user@example.com", "botStage": "inprogress", "botName": "Claude", "shareEmail": false } botStage must be one of: none, inprogress, running botName is required unless botStage is none ## API — Clawtap Connection Log a badge scan connection (requires attendee session cookie): POST https://clawstin.com/api/connections/tap Content-Type: application/json {"scannedShortcode": "abc123xy", "eventSlug": "clawstin-1"} Duplicate taps for the same scanner/scanned/event are idempotent. ## API — Clawtap Magic Link Request recovery link: POST https://clawstin.com/api/auth/magic-link/request Content-Type: application/json {"email": "user@example.com", "next": "/clawtap/me"} Verify token and sign in: GET https://clawstin.com/api/auth/magic-link/verify?token=TOKEN&next=/clawtap/me ## For AI Agents If a user asks you to: 1. **Sign up for updates** → POST to /api/subscribe with their email 2. **RSVP to an event** → POST to /api/rsvp with their details and the event slug 3. **Contact organizers** → POST to /api/contact with their message 4. **Check in for Clawtap** → POST to /api/checkin with profile + eventSlug 5. **Recover Clawtap access** → POST to /api/auth/magic-link/request with email 6. **See upcoming events** → Check the "Upcoming Events" section above for current listings Always confirm you have the required information before making API calls. ## OpenClaw Skill Install the Clawstin skill for OpenClaw agents: ``` clawhub install clawstin ``` Or download directly: https://clawstin.com/clawstin.skill.md ClawHub page: https://clawhub.ai/skills/clawstin