Authentication
Every MeetStream API request is authenticated with a single API key sent in the Authorization header.
All MeetStream API requests require an API key. Send it in the Authorization header of every request, prefixed with Token:
The scheme is the literal word Token followed by a space and your key — not Bearer, not ApiKey. Requests without a valid key return 401 Unauthorized.
Get your API key
Base URL
All endpoints are served under:
Example request
Keeping your key safe
- Store the key in an environment variable or secrets manager — never commit it to source control.
- Rotate a key immediately if it is exposed; generate a new one in the dashboard and delete the old one.
- Use a separate key per integration or teammate so you can revoke one without disrupting the others.
