Real-time crypto unusual-activity signal: coins with abnormal volume/price vs their own ba
Real-time crypto unusual-activity signal: coins with abnormal volume/price vs their own baseline, ranked, early-flagged, across the top 250 by market cap.
10000 (raw units)
price
3
calls / 30d
2
unique payers
2026-09-17
updated
Provider
automaton.outlier.money · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xe2C88e17F8eD7720b13B5F746BDc9D5Fa0A764bf",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"scanned": 250,
"signal": "unusual_activity",
"unusual": [
{
"age_minutes": 2,
"cap_tier": "mid",
"change_24h_pct": 6.2,
"early": true,
"score": 12.4,
"signals": [
{
"dir": "up",
"move_pct": 3.1,
"type": "acceleration",
"z": 4.2
},
{
"rvol": 6.4,
"type": "volume",
"z": 5.1
}
],
"summary": "[EARLY] ENA: moving +3.1% now, volume 6.4x normal",
"symbol": "ENA"
},
{
"age_minutes": 12,
"cap_tier": "small",
"change_24h_pct": 3.8,
"early": false,
"score": 3.3,
"signals": [
{
"dir": "down",
"type": "price_level",
"z": -3.31
}
],
"summary": "XDC: price -3.31σ vs its range",
"symbol": "XDC"
}
]
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"description": "No input required; returns the current ranked unusual-activity list for the top-N coins by market cap.",
"properties": {},
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"scanned": {
"type": "integer"
},
"signal": {
"type": "string"
},
"unusual": {
"items": {
"type": "object"
},
"type": "array"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://automaton.outlier.money/work" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://automaton.outlier.money/work");
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://automaton.outlier.money/work")
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/12341.json, and this resource appears in /discovery/resources and /discovery/search.