Granite 4.1 8B

IBM Granite chattool_use

API ID: ibm-granite/granite-4.1-8b-20260429

Input Price
$0.05
/1M tokens
Output Price
$0.10
/1M tokens
Cached Input
$0.05
Save 0%

About Granite 4.1 8B

Granite is IBM's enterprise language model series, designed for business applications. The models deliver strong performance on enterprise tasks with focus on reliability and safety. Granite variants include specialized versions for different business needs. The series integrates with IBM's enterprise AI platform. For organizations seeking enterprise-grade AI from IBM, Granite offers business-focused capability.

๐Ÿ“Š
Price Ranking
#624 lowest price among 1240 Chat models

Model Specifications

Context Length
131k
Max Output
131k
Release Date
2026-04-30
Capabilities
chat tool_use
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
$0.05
/month
50 conversations/day, ~500 tokens each
Customer Service Bot
$1.65
/month
1000 tickets/day, ~800 tokens each

IBM Granite Model Lineup

Compare all models from IBM Granite to find the best fit

Model Input Output Context Capabilities
Granite 4.1 8B Current $0.05 $0.10 131k chat tool_use
Granite 4.0 Micro $0.02 $0.11 131k chat

Similar Models from Other Providers

Cross-brand alternatives with similar capabilities

Google Gemma 3 4B
Input: $0.05
Output: $0.10
Context: 131k
Google Gemini Embedding 001
Input: $0.15
Output: Free
Context: 20k
Mistral Codestral Embed 2505
Input: $0.15
Output: Free
Context: 8k
Microsoft Phi 4 Multimodal Instruct
Input: $0.05
Output: $0.10
Context: 131k

๐Ÿš€ Quick Start

Get started with Granite 4.1 8B 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="ibm-granite/granite-4.1-8b-20260429",
    messages=[
        {"role": "user", "content": "Hello!"}
    ]
)
print(response.choices[0].message.content)