Judemy AIAPI

Judemy AI API

JudeMind exposes a HTTPS JSON API for chat and model discovery. Use it from backends, scripts, and your own apps—subject to JudeMind terms and your API plan.

Base URL & format

All requests use TLS and JSON unless noted.

Production base:https://api.judemind.com

Send Content-Type: application/json for POST bodies. Responses are JSON. Rate limits and availability depend on your JudeMind account.

API implementation (api.judemind.com) →JudeMind home

Authentication

Use your JudeMind API key on every request.

Pass the key in the X-API-Key header. Do not expose keys in front-end code or public repos—call the API from your server or a secured edge function.

X-API-Key: your_judemind_api_key

Manage keys & integration → api.judemind.com

Chat completions

POST /v1/chat

Send a user message, optional conversation history, and a model_id. The API returns the assistant reply for your chosen model tier.

Example body:

{ "message": "Hello!", "history": [], "model_id": "pro-general"
}

history is typically an array of prior turns in the same shape your app uses for multi-step dialogs. Exact response fields follow JudeMind’s current schema (see your dashboard or JudeMind docs for the latest).

Run & integrate chat API → api.judemind.com

Models

GET /v1/models

Lists models available to your key (names, IDs, and capabilities as returned by the service). Use the model_id you need in POST /v1/chat.

Include the same X-API-Key header and Accept: application/json.

Models & integration → api.judemind.com

Integrations & help

Judemy builders and enterprise workloads use this same API surface.