Chat

Chat Completions

Access 24 large language models — GPT, Claude, Gemini, DeepSeek, Grok, Llama, Mistral, and more — through a single OpenAI-compatible endpoint. One API key, one format, every model.

How it works

Synchronous

Chat returns the full response immediately — no task_id, no polling, no webhooks needed.

OpenAI-compatible

Uses the standard messages format. Drop in your existing OpenAI SDK code and just change the base URL.

Credit-based

Charged per request (not per token). Budget models from 1 credit, top reasoning models at 5 credits.

Quick start

curl -X POST https://journeyapi.co/api/v1/chat/completions \
  -H "Authorization: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "gpt-4o",
    "messages": [
      { "role": "system", "content": "You are a helpful assistant." },
      { "role": "user", "content": "Write a prompt for a sunset photo." }
    ]
  }'

Or use the OpenAI SDK — set base_url to https://journeyapi.co/api/v1 and your JourneyAPI key. No other changes needed.

Available models

TierModelsCredits
Budget
deepseek-chatdeepseek-reasonerllama-4-scoutllama-4-maverickllama-3.3-70bqwen-turboqwen-plusgemma-3-27b
1 credit
Standard
gpt-4o-miniclaude-haiku-4-5gemini-2.0-flashgrok-3-miniqwen-maxmistral-large
2 credits
Premium
gpt-4oclaude-sonnet-4-5gemini-2.5-progrok-3
3 credits
Top
o3o4-miniclaude-opus-4gemini-2.5-ultra
5 credits

Next