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.

LanguagePackageManager
PythonopenaiPyPI
JavaScriptopenainpm
Goopenai-gogo modules

Installation

pip install openai

Upgrade to the latest version:

pip install --upgrade openai

Configuration

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

ResourceLink
API Referenceapi.callmissed.com/docs
Dashboardapp.callmissed.com
CommunityDiscord
Was this page helpful?