Ecosystem/Anthropic

Anthropic

Tempo
Llm2 endpointsFrom $0.010 /req

Access Claude AI models through both the native Anthropic Messages API and an OpenAI-compatible chat completions endpoint. Supports system prompts, tool use, vision (image inputs), streaming, and extended thinking across Claude Sonnet, Opus, and Haiku model tiers. Pay per request with USDC — no API keys needed.

View documentation

When should an agent use this?

Use Anthropic when your agent needs high-quality reasoning, code generation, analysis, or creative writing. Claude excels at complex multi-step tasks, following nuanced instructions, and producing structured outputs. Ideal for coding assistants, research agents, content generators, and any workflow requiring strong language understanding.

Endpoints

Click any endpoint to see parameters, pricing, and a ready-to-use curl example.

Paid (2)

Native Anthropic Messages API. Full access to Claude features including system prompts, tool use, vision (image inputs), streaming, and extended thinking. Supports Claude Sonnet, Opus, and Haiku models.

Path/services/anthropic/v1/messages
MethodPOST
Price$0.010 per request

Parameters

NameTypeRequiredDescription
modelstringYesModel ID — e.g. claude-sonnet-4-5-20250514, claude-opus-4-5-20250514, claude-haiku-4-5-20251001
max_tokensnumberYesMaximum number of tokens to generate in the response
messagesarrayYesArray of message objects with role ('user' or 'assistant') and content
systemstringNoSystem prompt to set context and behavior for Claude
temperaturenumberNoSampling temperature between 0 and 1 (default: 1)
streambooleanNoEnable streaming responses via server-sent events

Example Request

curl
curl -X POST \
  "https://api.indiegent.com/services/anthropic/v1/messages" \
  -H "Authorization: Bearer <your-token>" \
  -H "X-Agent-Wallet: my-agent" \
  -H "Content-Type: application/json" \
  -d '{
  "model": "claude-sonnet-4-5-20250514",
  "max_tokens": 1024,
  "messages": [
    {"role": "user", "content": "Explain how neural networks learn in simple terms"}
  ]
}'

IndieGent Endpoint

api.indiegent.com/services/anthropic

Payment

USDC · Automatic

Payment protocols handled by IndieGent

Network

Tempo

IndieGentIndieGent — Independent wallets for independent agents

npm install -g @indiegent/cli