Skip to main content

Overview

Venly Fundflow API uses OAuth2 client credentials flow. All API requests require a bearer token in the Authorization header.

Get an Access Token

Send a POST request to the token endpoint for your environment:

Request Body

Response

The response includes an access_token valid for 5 minutes (300 seconds). Once expired, repeat the call above to get a new one.

Use the Token

Pass the access_token as a bearer token in the Authorization header of every API call:

Best Practices

  • Never expose client secrets in client-side code, logs, or version control.
  • Store credentials in environment variables or a secrets manager.
  • Implement auto-refresh logic to request a new token before the current one expires.