Palmyra X5

Writer chat Long

API ID: writer/palmyra-x5-20250428

Input Price
$0.60
/1M tokens
Output Price
$6.00
/1M tokens

About Palmyra X5

Palmyra X5 is a mid-range general-purpose model from Writer with ultra-long context (1.0M), suitable for conversations, content creation, and general AI tasks.

💰
Price Ranking
#1084 lowest price among 1240 Chat models

Model Specifications

Context Length
1.0M
Max Output
8k
Release Date
2026-01-21
Capabilities
chat
Input Modalities
text
Output Modalities
text

Best For

  • Conversations, content writing, general assistance

Consider Alternatives For

  • Image understanding (needs vision capability)

💰 Real-World Cost Examples

Estimated monthly costs for common use cases

Personal AI Assistant
$2.07
/month
50 conversations/day, ~500 tokens each
Customer Service Bot
$63.00
/month
1000 tickets/day, ~800 tokens each

Similar Models from Other Providers

Cross-brand alternatives with similar capabilities

Anthropic Claude Haiku 4.5
Input: $1.10
Output: $5.50
Context: 200k
OpenAI GPT-4o (batch)
Input: $1.25
Output: $5.00
Context: 128k
OpenAI GPT-3.5 Turbo 16k
Input: $3.00
Output: $4.00
Context: 16k
Meta Llama 3.1 405B Instruct
Input: $3.50
Output: $3.50
Context: 131k

🚀 Quick Start

Get started with Palmyra X5 API

OpenAI-compatible SDK
from openai import OpenAI

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

response = client.chat.completions.create(
    model="writer/palmyra-x5-20250428",
    messages=[
        {"role": "user", "content": "Hello!"}
    ]
)
print(response.choices[0].message.content)