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. Use a model ID from the access list above, such as bygheart-v5 or gemma4:31b if your tier includes it.
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": "bygheart-v5",
"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': 'bygheart-v5',
'messages': [
{'role': 'user', 'content': 'Hello, how are you?'}
]
}
)
print(response.json())