curl -X POST https://api.finscreener.in/api/auth/refresh \ -H "Content-Type: application/json" \ -d '{"refresh_token": "your_refresh_token"}'
{ "token": { "access_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...", "refresh_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...", "token_type": "bearer" } }
Get a new access token using refresh token
Show properties