Comment on page
REST API Reference
As our API continues to evolve it will be versioned to ensure backward compatibility for our users. Breaking changes will come under new major versions, while non-breaking changes may be added to existing versions and change more frequently.
- Removal of endpoints
- Removing response data
- Changes in request / response format
- Changes to authentication mechanism
- Adding new endpoints
- Adding to response data
- New parameters
We rate limit our APIs, returning a
429
status code response when your request has been throttled. You will have to wait and retry the request later.We use a point system to limit the number of requests that you can make.
A read request consumes 1 point, a delete consumes 2 points and a write request consumes 3 points.
Here are some examples of how a 1000 point budget could be spent within 1 minute:
- 1000 GET requests (1000 x 1 = 1000 points)
- 500 DELETE requests (500 x 2 = 1000 points)
- 333 POST requests (333 x 3 = 999 points)
- 200 DELETE + 100 POST + 300 GET requests (200 x 2 + 100 x 3 + 300 x 1 = 1000 points)
Grow plans have 1000 points in total per minute, and Build plans have 100. The limits are global and are shared across all your API keys. Talk to us if you need higher limits.
You may read the
Retry-After
(seconds) or X-RateLimit-Reset
(date) response headers in order to know when you can restart your requests. In addition, the X-RateLimit-Limit
header includes the total number of points for your organization, and the X-RateLimit-Remaining
header displays the remaining available points.The bearer token will be provided upon request and it is up to the client to keep it secret. Every API call needs to contain this token in order to authenticate and authorize the client.
Security Scheme Type | HTTP |
HTTP Authorization Scheme | bearer |
Creates a transient room that is available between creation and an hour after the given
endDate
. After this time the room will be automatically deleted. The URL to this room is present in the response.post
https://api.whereby.dev/v1
/meetings
Create meeting
get
https://api.whereby.dev/v1
/meetings
Get meetings
get
https://api.whereby.dev/v1
/meetings/{meetingId}
Get meeting
delete
https://api.whereby.dev/v1
/meetings/{meetingId}
Delete meeting
get
https://api.whereby.dev/v1
/insights/rooms
Get room insights
get
https://api.whereby.dev/v1
/insights/room-sessions
Get room session insights
get
https://api.whereby.dev/v1
/insights/participants
Get participants
get
https://api.whereby.dev/v1
/insights/participant
Get details for a participant in a session
get
https://api.whereby.dev/v1
/recordings
Get recordings
get
https://api.whereby.dev/v1
/recordings/{recordingId}
Get recording
get
https://api.whereby.dev/v1
/recordings/{recordingId}/access-link
Get recording access link
delete
https://api.whereby.dev/v1
/recordings/{recordingId}
Delete recording
post
https://api.whereby.dev/v1
/recordings/bulk-delete
Bulk delete recordings
post
https://api.whereby.dev/v1
/transcriptions
Create transcription
get
https://api.whereby.dev/v1
/transcriptions
Get transcriptions
get
https://api.whereby.dev/v1
/transcriptions/{transcriptionId}
Get transcription
get
https://api.whereby.dev/v1
/transcriptions/{transcriptionId}/access-link
Get transcription access link
delete
https://api.whereby.dev/v1
/transcriptions/{transcriptionId}
Delete transcription
post
https://api.whereby.dev/v1
/transcriptions/bulk-delete
Bulk delete transcriptions
put
https://api.whereby.dev/v1
/rooms/{roomName}/theme/logo
Set room logo
put
https://api.whereby.dev/v1
/rooms/{roomName}/theme/tokens
Set room colors
put
https://api.whereby.dev/v1
/rooms/{roomName}/theme/room-background
Set room background
put
https://api.whereby.dev/v1
/rooms/{roomName}/theme/room-knock-page-background
Set room knock page background
Last modified 22d ago