ACTIVE_CREDENTIALS
sk_mulberry_...
NO ACTIVE KEYS FOUND.
API_INTEGRATION_GUIDE
Authenticate your API requests by including your secret key in the Authorization HTTP header. Our API is fully compatible with the standard OpenAI SDKs.
# cURL Example
curl https://api.mulberry.vercel.app/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"model": "mulberry-auto",
"messages": [{"role": "user", "content": "Initialize system."}]
}'
// Python (OpenAI SDK) Example
import openai
client = openai.OpenAI(
base_url="https://api.mulberry.vercel.app/v1",
api_key="YOUR_API_KEY"
)
response = client.chat.completions.create(
model="mulberry-auto",
messages=[{"role": "user", "content": "Initialize system."}]
)
print(response.choices[0].message.content)