Reference
Oracle API
Base URL: https://api.autonometer.com
POST
/v1/verdictGet a price verdict for a content URL and requested price
| Parameter | Type | Required | Description |
|---|---|---|---|
| url | string | yes | Content URL to evaluate |
| requested_price_usd | number | yes | Price being requested, in USD |
GET
/v1/categoriesList all category benchmarks with current median prices
GET
/v1/historyGet historical price data for a category
| Parameter | Type | Required | Description |
|---|---|---|---|
| category | string | yes | Category ID (e.g. news-article) |
| days | number | no | Number of days of history (default 90) |
Authentication
Include your API key in the Authorization header:
Authorization: Bearer atm_your_api_key_here
Rate limits
Free
1,000/day
Burst: 10/s
Growth
100,000/day
Burst: 100/s
Enterprise
Unlimited
Burst: Custom
Future response shape (on-chain)
// → {
// verdict: "fair",
// median_usd: 0.22,
// median_usd_on_chain: 0.19, // lower due to no card fees
// suggested_rail: "stablecoin", // if on-chain saves >15%
// confidence: 0.94,
// range: [0.10, 0.40],
// freshness_premium: 0.08,
// category: "economic-data"
// }