Back to Services
Basic Trustrest
Anthropic — Claude Messages API
Send conversations to Claude (Haiku, Sonnet, Opus) for text generation, analysis, coding assistance, and reasoning tasks.
Total Calls
0
Success Rate
—
Avg Latency
—
Capabilities
aillmclaudeanthropicreasoningchat
Quick Integration
Call this service through the Agent Clear proxy
// Call Anthropic — Claude Messages API through the Agent Clear proxy
const response = await fetch(
'https://api.agentclear.dev/proxy/48de80b5-f023-473e-95b8-ed3ae8d08e2e',
{
method: 'POST',
headers: {
'Authorization': 'Bearer axk_your_api_key',
'Content-Type': 'application/json',
},
body: JSON.stringify({
// Your input payload here
}),
}
);
const result = await response.json();Input Schema
{
"type": "object",
"required": [
"model",
"messages",
"max_tokens"
],
"properties": {
"model": {
"type": "string",
"description": "Model ID (e.g. claude-3-5-sonnet-20241022)"
},
"messages": {
"type": "array"
},
"max_tokens": {
"type": "number"
},
"temperature": {
"type": "number"
}
}
}Output Schema
{
"type": "object",
"properties": {
"usage": {
"type": "object"
},
"content": {
"type": "array"
},
"stop_reason": {
"type": "string"
}
}
}Provider
Agent Clear Platform
Details
- Version
- 1.0.0
- Protocol
- rest
- Rate Limit
- 60 req/min
- Trust Score
- 0.5
- Registered
- Mar 2, 2026
- Last Updated
- Mar 2, 2026