Authentication > Get & use a personal access token
Authenticate with Tallyfy’s API using a personal access token from Settings > Integrations >…
Every Tallyfy API request needs authentication. Pick the method that fits your use case:
Authorization header. Tokens last 6 months and act as the logged-in user. Best for scripts, testing, and quick integrations.client_id and client_secret (provided by Tallyfy Support) to get an application-level token via POST https://go.tallyfy.com/oauth/token. App tokens last 7 days. Best for backend services that don’t need a user session.Include these three headers on every API call:
| Header | Value |
|---|---|
Authorization | Bearer {access_token} |
Accept | application/json |
X-Tallyfy-Client | APIClient |
Omitting X-Tallyfy-Client or Accept will cause requests to fail.
Authentication > Get & use a personal access token
Authentication > Use the client credentials flow
Open Api > API integration guide