Price positioning for an x402 service
Price positioning for an x402 service. Describe what you sell (and optionally what you charge) and get the comparable set — named, counted, and listed — plus your exact percentile within it, the full decile ladder of what those comparables charge, how much demand sits in each price band, and a suggested band derived from the comparables rather than asserted. Refuses to compute a percentile when too few real comparables exist, because a confident percentile over four loosely-related rows is worse than no answer. Interpretation is written by Animica's own AICF inference network; every figure is computed in code.
Provider
animica.dev · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x5D17c40FD6b119dc6006C4Ab3C20a917FCaB2aCD",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "9278",
"maxTimeoutSeconds": 60
},
{
"scheme": "exact",
"network": "animica:1",
"payTo": "anim1zqpsmegc0qcvzjfukm89xs0zeu3eqyyyel7kelehuszvwfarqypky2gr946ga",
"asset": "ANM",
"amount": "110199556541",
"maxTimeoutSeconds": 60
}
]Output schema
{
"animica": {
"catalog": "https://animica.dev/.well-known/x402",
"content_type": "application/json",
"currency": "USDC",
"description": "Price positioning for an x402 service. Describe what you sell (and optionally what you charge) and get the comparable set — named, counted, and listed — plus your exact percentile within it, the full decile ladder of what those comparables charge, how much demand sits in each price band, and a suggested band derived from the comparables rather than asserted. Refuses to compute a percentile when too few real comparables exist, because a confident percentile over four loosely-related rows is worse than no answer. Interpretation is written by Animica's own AICF inference network; every figure is computed in code.",
"documentation": "https://animica.dev/x402#product-analytics_price",
"free_trial": {
"endpoint": "POST /x402/analytics/price/trial",
"limit_per_day": 2,
"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/analytics/price/trial"
},
"name": "x402 Analytics — where does this price sit?",
"openapi": "https://animica.dev/x402/openapi.json",
"price": "0.009278",
"product": "analytics_price",
"provider": "Animica",
"terms": {
"amount_atomic": "9278",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"chain_id": 8453,
"network": "eip155:8453",
"pay_to": "0x5D17c40FD6b119dc6006C4Ab3C20a917FCaB2aCD",
"scheme": "exact"
},
"x402_version": 2
},
"bazaar": {
"discoverable": true,
"info": {
"input": {
"body": {
"description": "signed random bytes with an entropy health report"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"properties": {
"body": {
"properties": {
"description": {
"description": "what the service does, in the words a merchant would use to describe it",
"type": "string"
},
"narrative": {
"description": "include the AICF-written interpretation (default true)",
"type": "boolean"
},
"network": {
"description": "restrict comparables to one settlement network",
"type": "string"
},
"price_usd": {
"description": "the price per call you charge or are considering. Omit to get the market band without a position",
"type": "number"
},
"top_comparables": {
"description": "how many comparables to list back, 0-25 (default 10)",
"type": "integer"
}
},
"required": [
"description"
],
"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": {
"description": {
"description": "what the service does, in the words a merchant would use to describe it",
"required": true,
"type": "string"
},
"narrative": {
"description": "include the AICF-written interpretation (default true)",
"required": false,
"type": "boolean"
},
"network": {
"description": "restrict comparables to one settlement network",
"required": false,
"type": "string"
},
"price_usd": {
"description": "the price per call you charge or are considering. Omit to get the market band without a position",
"required": false,
"type": "number"
},
"top_comparables": {
"description": "how many comparables to list back, 0-25 (default 10)",
"required": false,
"type": "integer"
}
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"description": "comparables {count, floor, listed[]}, distribution {deciles}, your_position {percentile, vs_median}, demand_by_band[], suggested_band, inference {provenance, grounding}",
"type": "json"
}
}
}
}Use it
curl
curl "https://animica.dev/x402/analytics/price" # -> 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/analytics/price");
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/analytics/price")
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/7527.json, and this resource appears in /discovery/resources and /discovery/search.