Security & Authentication

Authentication endpoints for generating short lived access tokens to access our services.

Getting Started

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.com
1

Generate JWT Tokens

JWT tokens can be generated directly from your dashboard. These tokens should be treated as sensitive secrets and stored securely

2

Create Short-Lived Tokens

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.

3

Use the Token

Include the JWT token in the Authorization header of all subsequent API requests as a Bearer token

4

Token Renewal

Short-lived JWT tokens expire quickly for security. Generate new tokens as needed using your main JWT token

Security Best Practice

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.