Get an Access Token
Before you get started
You'll need your API Credentials.
Get Your Access Token
- Send a
POSTrequest tohttps://api.tackle.io/v1/authenticatefollowing the Authentication API Reference :
curl -L -X POST 'https://api.tackle.io/v1/authenticate' \
-H 'Content-Type: application/json' \
--data-raw '{
"client_secret": "your-application-client-secret",
"client_id": "your-application-client-id",
"grant_type": "client_credentials"
}'- If successful, you should receive a
200 OKresponse similar to the following:
{
"access_token": "your-jwt-here",
"token_type": "bearer",
"expires_in": 5400
}Now you have your access token, and you're ready to use the Tackle API.
The token expires in 5400 seconds or 90 minutes.
Updated 10 months ago
What’s Next
Did this page help you?
