Standard-tier chat/completions (OpenAI-compatible), served by Animica's network
Standard-tier chat/completions (OpenAI-compatible), served by Animica's network. Cheaper than priority, standard latency — priced at 3x settlement gas.
1800 (raw units)
price
13
calls / 30d
2
unique payers
2026-09-13
updated
Provider
animica.dev · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x5D17c40FD6b119dc6006C4Ab3C20a917FCaB2aCD",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "1800",
"maxTimeoutSeconds": 60
},
{
"scheme": "exact",
"network": "animica:1",
"payTo": "anim1zqpsmegc0qcvzjfukm89xs0zeu3eqyyyel7kelehuszvwfarqypky2gr946ga",
"asset": "ANM",
"amount": "24895806439",
"maxTimeoutSeconds": 60
}
]Output schema
{
"animica": {
"catalog": "https://animica.dev/.well-known/x402",
"content_type": "application/json",
"currency": "USDC",
"description": "Standard-tier chat/completions (OpenAI-compatible), served by Animica's network. Cheaper than priority, standard latency — priced at 3x settlement gas.",
"documentation": "https://animica.dev/x402#product-tier_standards",
"free_trial": {
"endpoint": "POST /x402/v1/standard/chat/completions/trial",
"limit_per_day": 1,
"note": "Same code and same response shape as the paid endpoint. No payment, no payment headers. Quota is per client per UTC day; when it is spent this endpoint says so and points back here.",
"price": "0",
"url": "https://animica.dev/x402/v1/standard/chat/completions/trial"
},
"name": "Tier Standards inference",
"openapi": "https://animica.dev/x402/openapi.json",
"price": "0.001800",
"product": "tier_standards",
"provider": "Animica",
"terms": {
"amount_atomic": "1800",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"chain_id": 8453,
"network": "eip155:8453",
"pay_to": "0x5D17c40FD6b119dc6006C4Ab3C20a917FCaB2aCD",
"scheme": "exact"
},
"x402_version": 2
},
"bazaar": {
"discoverable": true,
"info": {
"input": {
"body": {
"max_tokens": 8,
"messages": [
{
"content": "Reply with exactly: OK",
"role": "user"
}
]
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"properties": {
"body": {
"properties": {
"max_tokens": {
"description": "completion budget",
"type": "integer"
},
"messages": {
"description": "OpenAI-style chat messages",
"type": "array"
},
"model": {
"description": "model id (see the free /v1/models)",
"type": "string"
},
"stream": {
"description": "must be false/absent — streaming is not yet supported on the paid path",
"type": "boolean"
}
},
"type": "object"
},
"bodyType": {
"enum": [
"json"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
},
"discovery": {
"discoverable": true,
"info": {
"input": {
"bodyFields": {
"max_tokens": {
"description": "completion budget",
"type": "integer"
},
"messages": {
"description": "OpenAI-style chat messages",
"type": "array"
},
"model": {
"description": "model id (see the free /v1/models)",
"type": "string"
},
"stream": {
"description": "must be false/absent — streaming is not yet supported on the paid path",
"type": "boolean"
}
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"description": "OpenAI-compatible chat.completion object from the Animica serving bridge",
"type": "json"
}
}
}
}Use it
curl
curl "https://animica.dev/x402/v1/standard/chat/completions" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://animica.dev/x402/v1/standard/chat/completions");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://animica.dev/x402/v1/standard/chat/completions")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/7499.json, and this resource appears in /discovery/resources and /discovery/search.