/api/public/v1/meetingsCreate a meeting and get its join link
Add HD video meetings to your product with one REST call.
Create meetings, get instant join links and automate scheduling from your own app, CRM, LMS or booking flow. Simple bearer-token auth, JSON in and out, no SDK required.
API keys
Keys authenticate requests as your Moyan SEE account. Keep them server-side — never ship a key in browser or mobile code.
Endpoints
/api/public/v1/meetingsList upcoming and past meetings for your accountAuthentication
Send your key as a bearer token on every request:
Authorization: Bearer msee_live_xxxxxxxxxxxxCreate a meeting
curl -X POST https://see.moyanai.app/api/public/v1/meetings \
-H "Authorization: Bearer msee_live_xxxxxxxxxxxx" \
-H "Content-Type: application/json" \
-d '{
"title": "Weekly sync",
"agenda": "Roadmap review",
"scheduled_at": "2026-09-05T10:00:00Z",
"duration_minutes": 45
}'{
"data": {
"id": "e2f1...",
"title": "Weekly sync",
"room_code": "K7QP2M",
"scheduled_at": "2026-09-05T10:00:00Z",
"duration_minutes": 45,
"join_url": "https://see.moyanai.app/meeting?room=K7QP2M"
}
}List meetings
curl https://see.moyanai.app/api/public/v1/meetings \
-H "Authorization: Bearer msee_live_xxxxxxxxxxxx"Errors
- 401 — missing, invalid or revoked API key.
- 400 — invalid JSON body or missing
title. - 500 — unexpected server error; retry with backoff.
API pricing
Start free with 500 calls a month, then scale to 25,000 or 250,000 monthly calls. Full plan details and checkout live on the pricing page.
See API plans