API authorization
All calls to the Metronome API require an authorization token. You can create tokens in the Metronome app.
Save your token
Be sure to save the token you create. You cannot view the full token again.
Create as many tokens as is useful, providing descriptive names for each. The token's name is associated with API calls made using it, which can be helpful when tracking changes and requests.
When making API calls, provide the token using the Authorization
header. The value of the header should be the word Bearer
, followed by a space, followed by your token:
curl http://api.metronome.com
-H "Authorization: Bearer <TOKEN>"