Financial Data
Token
Generate a token to authenticate requests
GET
/
token
Query
curl --request GET \
--url https://api.zingfi.co/token
{
"token": "eyJhbGciOiJBMjU2S1ciLCJlbmMiOiJBMjU2Q0JDLUhTNTEyI.....",
"expires_in": 3600,
"token_type": "Bearer"
}
Parameters
api_key
string
requiredAPI Key from your dashboard
Response Fields
token
string
The bearer token you need to run authenticate other requests
expires_in
number
The expiration time for the token
token_type
string
The type of token
curl --request GET \
--url https://api.zingfi.co/token
{
"token": "eyJhbGciOiJBMjU2S1ciLCJlbmMiOiJBMjU2Q0JDLUhTNTEyI.....",
"expires_in": 3600,
"token_type": "Bearer"
}