The Directory and DataExport APIs use OAuth 2.0 with the Client Credentials flow. This flow is designed for server-to-server communication where no end-user context is required — your application authenticates directly using its client credentials to obtain a short-lived access token.Documentation Index
Fetch the complete documentation index at: https://docs.meitner.se/llms.txt
Use this file to discover all available pages before exploring further.
Obtaining an access token
Send aPOST request to the token endpoint with your client_id and client_secret:
Using the access token
Include the token in theAuthorization header of every API request:
Handling token expiry
Tokens are valid for the duration specified inexpires_in (seconds). The Client Credentials flow does not issue refresh tokens — when your token expires, request a new one using the same client credentials.
Track
expires_in in your application and proactively refresh the token before it expires to avoid failed requests.