Skip to main content

Authentication

Prerequisites

Authentication Method

All API requests require a Bearer token in the Authorization header. Use your API key as the token.

Example

import requests

# Get your API key at: https://account.generio.ai → API Keys tab
API_KEY = "your-api-key-here"
BASE_URL = "https://flows.generio.ai"

# Include this header with every request
headers = {"Authorization": f"Bearer {API_KEY}"}

# Example request
response = requests.post(f"{BASE_URL}/flows", headers=headers, json=payload)

Need an API key? Get one at account.generio.ai → API Keys tab