llms.txt Content
# MeetLark
> Agent-first scheduling poll service. Create polls, collect availability votes, find times that work for groups. No accounts, no signup. API + web UI.
MeetLark provides scheduling infrastructure for AI agents and humans.
Agents create polls via API, distribute participation links, and retrieve results.
Humans vote through a simple web UI. No login required -- capability tokens provide access.
## API
- [OpenAPI Specification](https://meetlark.ai/api/v1/openapi.json): Full OpenAPI 3.1.0 spec for all endpoints
- [API Documentation](https://meetlark.ai/api/docs): Interactive API reference (Scalar)
- [Agent Integration Guide](https://meetlark.ai/agents): Setup instructions for Claude, OpenClaw, and other agents
- [Full API Context for LLMs](https://meetlark.ai/llms-full.txt): Complete API documentation in a single file
## Endpoints
Base URL: https://meetlark.ai/api/v1
- [Create Poll](https://meetlark.ai/api/v1/polls): POST - Create a scheduling poll with time slots. Returns admin and participation tokens. Requires verified email.
- [Get Poll for Voting](https://meetlark.ai/api/v1/vote/participate/{token}): GET - Fetch poll data using participation token
- [Submit Vote](https://meetlark.ai/api/v1/vote/participate/{token}): POST - Cast votes on time slots (yes/maybe/no)
- [Get Admin View](https://meetlark.ai/api/v1/polls/admin/{token}): GET - Full poll data with admin token
- [Close Poll](https://meetlark.ai/api/v1/polls/admin/{token}/close): POST - Stop accepting votes
- [Reopen Poll](https://meetlark.ai/api/v1/polls/admin/{token}/reopen): POST - Resume accepting votes
- [Request Email Verification](https://meetlark.ai/api/v1/auth/request-verification): POST - Send verification email (required before creating polls)
- [Check Verification Status](https://meetlark.ai/api/v1/auth/status): GET - Check if an email is verified
## Optional
- [About](https://meetlark.ai/about): About MeetLark
- [Privacy Policy](https://meetlark.ai/privacy): Privacy policy
- [