Authentication

The Tento API uses API tokens to authenticate requests. All API requests must include your partner API token in the request header.


Getting Your API Token

Partner API tokens are issued through the Volt platform. Once your partner account has been set up by the Tento team:

  1. Log in to Volt with your partner credentials

  2. Navigate to API Tokens

    In the partner sidebar, open API Tokens (visible to partner admins), then Create New Token.

  3. Generate a new token and store it securely — it will only be displayed once

If you don't have a partner account yet, fill out our partner integration form.

Making Authenticated Requests

Include your API token in the x-api-key header on every request:

curl https://api.tento.co/bcm/insights/{businessPublicId} \
  -H "x-api-key: YOUR_API_TOKEN"

Token Permissions

Tokens are scoped to your partner account and only grant access to data for businesses referred through your integration. You cannot access data for businesses referred by other partners or created directly in Tento.

PermissionDescription
read-bcm-scoreAccess business credit scores and insights
send-bcm-applicationSubmit BCM applications
read-loan-application-statusAccess financing application status
send-loan-applicationSubmit financing applications

Error Responses

StatusMeaning
401Invalid or missing API token
403Valid token, but not permitted for this specific resource (e.g. an application belonging to another partner)
404Business not found or not referred by your partner account

Security Best Practices

  • Never expose your API token in client-side code or public repositories
  • Rotate tokens periodically via Volt
  • Use separate tokens for staging and production environments

Staging vs. Production

EnvironmentBase URL
Staginghttps://api-staging.tento.com
Productionhttps://api.tento.com

Contact the Tento team to receive a staging API token and test business IDs. Access to Volt on staging is not available.