Authentication endpoints for generating short lived access tokens to access our services.
Before you can use any of our APIs, you will need to create an API token. This token acts as your digital key, proving your identity and authorizing access to our services
All API requests should be made to:
https://api.findableplus.comJWT tokens can be generated directly from your dashboard. These tokens should be treated as sensitive secrets and stored securely
To protect your main JWT token, you can generate short-lived JWT tokens using the /security/createjwt/v1 endpoint below. These temporary tokens will expire after a short period of time.
Include the JWT token in the Authorization header of all subsequent API requests as a Bearer token
Short-lived JWT tokens expire quickly for security. Generate new tokens as needed using your main JWT token
Always use short-lived tokens for API requests rather than your main dashboard-generated token. This minimizes security risks if a token is compromised.
For detailed implementation examples and request/response formats, see the interactive API reference below.