Developer API

Build with models, speech, images, and search

Use documented APIs under one CallMissed account, with scoped keys, a searchable model catalog, and a browser playground.

  • OpenAI-compatible chat, audio, and image request patterns
  • Dedicated web-search endpoint with source-aware results
  • Scoped API keys for service and resource access
  • Model metadata and pricing published in the catalog

api.callmissed.com

Bearer cm_YOUR_KEY

HTTPS
POST/v1/chat/completions
POST/v1/audio/transcriptions
POST/v1/audio/speech
POST/v1/images/generations
POST/v1/search
Platform foundations

A practical path from test request to production

The API, catalog, playground, and dashboard each have one clear role.

OpenAI-compatible where it matters

Use the official OpenAI SDK for chat, audio, and image workflows by changing the API key and base URL.

Scoped API keys

Grant service and resource permissions per key instead of sharing one unrestricted credential across applications.

Published model metadata

Review model category, creator, pricing, context, free-plan status, and supported capabilities before choosing a model.

Playground and code paths

Test supported models in the browser, then move the same request pattern into an application or server workflow.

Usage visibility

Review API usage and errors in the CallMissed dashboard while keeping application credentials separate.

Speech beside model inference

Keep chat, transcription, and speech generation under one authentication and account-usage layer.

Quickstart

Use the official OpenAI Python client

from openai import OpenAI

client = OpenAI(
    api_key="cm_YOUR_KEY",
    base_url="https://api.callmissed.com/v1",
)

response = client.chat.completions.create(
    model="sarvam-105b",
    messages=[{"role": "user", "content": "Namaste!"}],
)

print(response.choices[0].message.content)

Before you ship

  1. 1

    Create a scoped key

    Grant only the service and resource permissions required by this application.

  2. 2

    Confirm the model

    Check current availability, capabilities, and pricing in the model catalog.

  3. 3

    Handle errors and usage

    Follow the endpoint guide for status codes and review request usage from the dashboard.

Adjacent products

Use the APIs inside customer communication workflows

Voice agents and WhatsApp have dedicated product flows beyond the inference endpoints above.

FAQ

Developer API questions, answered

The documented chat, audio, and image endpoints follow OpenAI-compatible request patterns. Set the SDK base URL to https://api.callmissed.com/v1 and authenticate with a cm_ API key. Check each endpoint guide for model-specific parameters.

Make a verified first request

Start with the quickstart, test the selected model in the playground, and keep the API key on your server.