Create an instant meeting
/v1/zoreal/meet/instantAuthAPI key (Bearer)
Creates a meeting and returns its code, the address people join at, together with a host token that authorizes the host controls for this room. With no schedule fields the meeting is ready as soon as the host joins.
To create a scheduled meeting, add the schedule fields described in Schedule a meeting.
Request body
titlestringOptionalShown to everyone who opens the link. Up to 80 characters.e2eebooleanOptionalEnd-to-end encryption. It can be turned on later from inside the room, but only while the host is alone, and never off.Default: false
Returns
The room and its host_token. The token appears in this response and nowhere else - only a digest is stored - so keep it if the meeting will be managed later.
curl -X POST https://api.bynn.com/v1/zoreal/meet/instant \ -H "Authorization: Bearer private_XXXXXXXXXXXXXXXXXXXXXXXX" \ -H "Content-Type: application/json" \ -d '{ "title": "Weekly sync" }'
{ "room": { "code": "kfm-qhtz-pgd", "created_at": "2026-09-01T10:14:22Z", "began_at": null, "title": "Weekly sync", "e2ee": false }, "host_token": "<HOST_TOKEN>" }
The code is ten letters in xxx-xxxx-xxx, drawn from a to z without the letter l, which is misread when a code is spoken aloud.
A meeting holds up to 25 people, and a call runs up to 90 minutes, measured from when the host first joins; the link itself survives the cap and can carry a fresh call.
When no media node can take a new room, the request answers 503 no_capacity.