Documentation
Everything you need to integrate Synapsea into your project.
Get Your API Key
All API requests require authentication via an API key. Log in to the console, navigate to "API Keys" and create your first key. Keep it secure — never expose it in client-side code.
Python
from openai import OpenAI
client = OpenAI(
base_url="https://api.example.com/v1",
api_key="YOUR_API_KEY",
)
# List available models
models = client.models.list()
for model in models:
print(model.id)