Skip to content
OpenKey

Morph V3 Fast

MorphReleased Jul 7, 2025

Morph's fastest apply model for code edits. ~10,500 tokens/sec with 96% accuracy for rapid code transformations. The model requires the prompt to be in the following format: <instruction>{instruction}</instruction> <code>{initial_code}</code> <update>{edit_snippet}</update>...

Try in playground
Context window
82K tokens
Max output
38K tokens
Input
text
Output
text
Tokenizer
Other
Released
Jul 7, 2025

Pricing

Per 1M tokens. The provider price and our flat 3% fee are separate columns — what you pay is their sum.

Per 1M tokensProvider+ 3% feeYou pay
Input$0.800$0.024$0.824
Output$1.20$0.036$1.24

Supported parameters

  • max_tokens
  • stop
  • temperature

Call it

OpenAI-compatible: point your SDK at api.openkey.ai/v1 and use model morph/morph-v3-fast.

Code sample language
curl https://api.openkey.ai/v1/chat/completions \
  -H "Authorization: Bearer $OPENKEY_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "morph/morph-v3-fast",
    "messages": [{"role": "user", "content": "Hello"}]
  }'
import os
from openai import OpenAI

client = OpenAI(
    base_url="https://api.openkey.ai/v1",
    api_key=os.environ["OPENKEY_API_KEY"],
)

completion = client.chat.completions.create(
    model="morph/morph-v3-fast",
    messages=[{"role": "user", "content": "Hello"}],
)
print(completion.choices[0].message.content)
import OpenAI from "openai";

const client = new OpenAI({
  baseURL: "https://api.openkey.ai/v1",
  apiKey: process.env.OPENKEY_API_KEY,
});

const completion = await client.chat.completions.create({
  model: "morph/morph-v3-fast",
  messages: [{ role: "user", content: "Hello" }],
});
console.log(completion.choices[0].message.content);

Questions

How much does Morph V3 Fast cost via API?
Through OpenKey, Morph V3 Fast costs $0.824 per 1M input tokens and $1.24 per 1M output tokens. That is the provider price ($0.800 / $1.20) plus a flat 3% fee — nothing else.
What is Morph V3 Fast's context window?
Morph V3 Fast accepts up to 82K tokens of context and returns up to 38K tokens per request.
Is Morph V3 Fast OpenAI-compatible?
Yes. Send requests to OpenKey's /v1/chat/completions endpoint with model "morph/morph-v3-fast" using any OpenAI SDK — only the base URL and API key change.
What inputs does Morph V3 Fast support?
Morph V3 Fast accepts text input and produces text output.

More from Morph

All Morph models →