API Keys
Manage your API keys to access Bygheart models programmatically.
Create New API Key
Plan: Free
This key will include:
🔑
API Key Created!
Copy this key now. You won't be able to see it again.
Your API Keys
Loading keys...
Quick Start
Use your API key to access Bygheart models. Native routes use message; OpenAI-compatible routes use model plus messages.
The chips above are access groups. Use these OpenAI model IDs in requests: bygheart-v5, bygheart-clinical-assist, qwen3.6-27b, qwen3.6-27b-q4_k_m, gemma4:31b, or bygheart-coder-v3.
Native Bygheart API
curl -X POST https://iamvision.tech/chat \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"message": "Hello, how are you?"}'
OpenAI-Compatible API
curl -X POST https://api.iamvision.tech/v1/chat/completions \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "qwen3.6-27b",
"messages": [
{"role": "user", "content": "Hello, how are you?"}
]
}'
Python Example
import requests
response = requests.post(
'https://api.iamvision.tech/v1/chat/completions',
headers={
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json',
},
json={
'model': 'qwen3.6-27b',
'messages': [
{'role': 'user', 'content': 'Hello, how are you?'}
]
}
)
print(response.json())