Getting a token
Using it
Both forms work. A script should send the bearer token:HttpOnly smolboard_session cookie instead, set at
sign-in. Requests from a browser therefore need no Authorization header.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Organizers sign in with a password or Google; speakers use an emailed code.
curl -X POST https://www.smolboard.app/api/auth/password/login \
-H 'Content-Type: application/json' \
-d '{"email":"you@example.com","password":"..."}'
{ "token": "pylon_…", "user_id": "0000…", "expires_at": 1789101076 }
curl -X POST https://www.smolboard.app/api/fn/agentListEvents \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer pylon_…' \
-d '{}'
HttpOnly smolboard_session cookie instead, set at
sign-in. Requests from a browser therefore need no Authorization header.