Client ID & Secret Key
The Plaud API uses Client ID and Secret Key to identify your unique application. Each application has:- Client ID: Your application’s public identifier
- Secret Key: A permanent credential used to track usage quota and permissions
API Token
Before making API requests, you need to generate anAPI token
using your Client ID
and Secret Key
.
The token is obtained by sending base64-encoded credentials in the Authorization header.
All token requests should include your credentials in an Authorization
HTTP header as follows:
Making Requests
You can paste the command below into your terminal to run your first API request. Make sure to replace$PLAUD_API_TOKEN
with your generated API token.