Getting Started
LIBRARIES & SDKS
Use the OpenAI SDK to integrate CallMissed APIs β our endpoints are fully OpenAI-compatible.
Official Libraries
CallMissed uses an OpenAI-compatible API, so you can use the official OpenAI SDKs directly. Just change the base URL and use your cm_ API key.
| Language | Package | Manager |
|---|---|---|
| Python | openai | PyPI |
| JavaScript | openai | npm |
| Go | openai-go | go modules |
Installation
pip install openaiUpgrade to the latest version:
pip install --upgrade openaiConfiguration
from openai import OpenAI
client = OpenAI(
api_key="cm_your_api_key",
base_url="https://api.callmissed.com/v1"
)
# Test the connection
response = client.chat.completions.create(
model="sarvam-30b",
messages=[{"role": "user", "content": "Hello"}]
)
print(response.choices[0].message.content)Resources
| Resource | Link |
|---|---|
| API Reference | api.callmissed.com/docs |
| Dashboard | app.callmissed.com |
| Community | Discord |
Was this page helpful?