Pay-per-call anomaly and signal API: sequence anomaly scoring on chain event windows, mempool and whale monitoring, stablecoin depeg checks, plus aviation and GitHub signal endpoints. USDC on Base, from $0.01 per call, no signup.
Pay from $0.01 to $0.05 per request in USDC on Base, settled onchain via the x402 protocol, no signup, no API key needed.
ASSESSMENT
updated 5h agoEvidence-backed signals, not a single score. Click any chip for the proof. Measured values stay read-only; unknown is honest.
reliability 100%
- uptime 24h
- 100%
- uptime 7d
- 100%
- uptime 30d
- 100%
- uptime 90d
- 100%
- response p95
- 245ms
- avg response
- 170ms
- total checks
- 47
compliance A (11/11)
11 of 11 x402 conformance checks pass. Full checklist below.
price $0.01 to $0.05 (p67 in Blockchain)
- price (min)
- $0.01
- price (max)
- $0.05
- category percentile (min)
- p67 in Blockchain
- category percentile (max)
- p69 in Blockchain
- endpoints / prices
- 10 / 4
- model
- tiered
- stability
- 100%
risk clean
No deterministic risk flag. Risk fires only on an exact blocklist match, or a reserved-brand name with a mismatched verified payTo. Never from low uptime, a high price, or a model guess.
traction $2.10 30d · 11 buyers
- volume 30d
- $2.10
- buyers 30d
- 11
- settlements 30d
- 90
- last settlement
- 2026-07-17
- top buyer share
- 51% of 30d volume
- trend 7d vs 30d
- 0.37x the 30d daily rate
- networks
- eip155:8453
Conservative undercount: only USDC settlements via facilitators we measure are counted. A measured floor, not an estimate.
Top buyer share is a concentration signal, not part of the ranking score.
WHAT IT DOES
ai-derivedA blockchain anomaly detection service that monitors for unusual transaction patterns, whale movements, stablecoin depegs, and other market irregularities.
- category
- blockchain-monitoring
- in
- mixed
AI-generated summary. The measured data is never altered by it.
ENDPOINTS
| METHOD | PATH | DESCRIPTION | PRICE | NETWORK | ASSET |
|---|---|---|---|---|---|
| POST | /api/address-scan | $0.03 | Base | USDC | |
| GET | /api/depeg-monitor | $0.01 | Base | USDC | |
| POST | /api/flight-scan | $0.03 | Base | USDC | |
| GET | /api/mempool-anomaly | $0.01 | Base | USDC | |
| POST | /api/repo-scan | $0.03 | Base | USDC | |
| POST | /api/sequence-anomaly | $0.05 | Base | USDC | |
| GET | /api/squawk-alerts | $0.02 | Base | USDC | |
| POST | /api/token-scan | $0.03 | Base | USDC | |
| GET | /api/trending-signal | $0.02 | Base | USDC | |
| GET | /api/whale-alerts | $0.02 | Base | USDC |
REQUEST / RESPONSE EXAMPLE
An unpaid request to GET /api/depeg-monitor returns HTTP 402 with the payment terms. Settle onchain via your facilitator, then retry with the X-Payment header.
curl -i 'https://anomaly.forgemesh.io/api/depeg-monitor'
// 402 response (captured by monitor) · 10 payloads · click to expand
[
{
"error": "Payment required",
"accepts": [
{
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"extra": {
"name": "USD Coin",
"version": "2"
},
"payTo": "0xE295B6641b32998537Ae0f8E61Babf729EAEd6E5",
"amount": "50000",
"scheme": "exact",
"network": "eip155:8453",
"maxTimeoutSeconds": 1800
}
],
"resource": {
"url": "https://anomaly.forgemesh.io/api/sequence-anomaly",
"mimeType": "application/json",
"description": "Returns an anomaly score (0-100), novelty rating, and story label like 'Supply Expansion' with the exact event sequence that triggered it — flag unusual on-chain patterns before they hit news feeds."
},
"extensions": {
"bazaar": {
"info": {
"input": {
"body": {
"chain": "ethereum",
"domain": "financial",
"window": "24h"
},
"type": "http",
"method": "POST",
"bodyType": "json"
},
"output": {
"type": "json",
"example": {
"chain": "ethereum",
"story": "Supply Expansion",
"domain": "financial",
"novelty": "high",
"coverage": 0.34,
"peak_window": [
"STABLECOIN_MINT",
"STABLECOIN_REDEEM",
"STABLECOIN_MINT",
"STABLECOIN_REDEEM"
],
"window_hours": 24,
"sequence_score": 66,
"events_collected": 29,
"historical_matches": 2,
"possible_failure_modes": [
"supply_expansion"
]
}
}
},
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"input"
],
"properties": {
"input": {
"type": "object",
"required": [
"type",
"method",
"bodyType",
"body"
],
"properties": {
"body": {
"properties": {
"chain": {
"type": "string",
"description": "Blockchain: ethereum, base, or arbitrum"
},
"domain": {
"type": "string",
"description": "Event domain (currently: financial)"
},
"window": {
"type": "string",
"description": "Lookback window: 1h, 4h, 24h, or 168h"
}
}
},
"type": {
"type": "string",
"const": "http"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
}
},
"additionalProperties": false
},
"output": {
"type": "object",
"required": [
"type"
],
"properties": {
"type": {
"type": "string"
},
"example": {
"type": "object",
"properties": {
"chain": {
"type": "string"
},
"story": {
"type": "string",
"description": "Human-readable anomaly label"
},
"novelty": {
"enum": [
"low",
"medium",
"high",
"extreme"
],
"type": "string"
},
"coverage": {
"type": "number"
},
"peak_window": {
"type": "array",
"items": {
"type": "string"
}
},
"window_hours": {
"type": "integer"
},
"sequence_score": {
"type": "integer",
"description": "0=normal, 100=highly anomalous"
},
"events_collected": {
"type": "integer"
},
"historical_matches": {
"type": "integer"
},
"possible_failure_modes": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
}
}
}
}
},
"builder-code": {
"info": {
"a": "bc_4ypyymtf"
},
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"a": {
"type": "string",
"pattern": "^[a-z0-9_]{1,32}$",
"description": "App builder code"
},
"s": {
"type": "array",
"items": {
"type": "string",
"pattern": "^[a-z0-9_]{1,32}$"
},
"description": "Service builder codes"
},
"w": {
"type": "string",
"pattern": "^[a-z0-9_]{1,32}$",
"description": "Wallet builder code"
}
},
"additionalProperties": false
}
},
"offer-receipt": {
"info": {
"offers": [
{
"format": "eip712",
"payload": {
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"payTo": "0xE295B6641b32998537Ae0f8E61Babf729EAEd6E5",
"amount": "50000",
"scheme": "exact",
"network": "eip155:8453",
"version": 1,
"validUntil": 1784575380,
"resourceUrl": "https://anomaly.forgemesh.io/api/sequence-anomaly"
},
"signature": "0x024006ed62e00fe51019e9ac6163b73b399ce3a8e0211e4c098cb55c295376e11935f122f9b212b593f77dc9d4449447530a5eda53030bb4fbdc9119e74e6bca1b",
"acceptIndex": 0
}
]
},
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"offers"
],
"properties": {
"offers": {
"type": "array",
"items": {
"type": "object",
"required": [
"format",
"signature"
],
"properties": {
"format": {
"type": "string"
},
"payload": {
"type": "object",
"required": [
"version",
"resourceUrl",
"scheme",
"network",
"asset",
"payTo",
"amount"
],
"properties": {
"asset": {
"type": "string"
},
"payTo": {
"type": "string"
},
"amount": {
"type": "string"
},
"scheme": {
"type": "string"
},
"network": {
"type": "string"
},
"version": {
"type": "integer"
},
"validUntil": {
"type": "integer"
},
"resourceUrl": {
"type": "string"
}
}
},
"signature": {
"type": "string"
},
"acceptIndex": {
"type": "integer"
}
}
}
}
}
}
},
"payment-identifier": {
"info": {
"required": false
},
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"required"
],
"properties": {
"id": {
"type": "string",
"pattern": "^[a-zA-Z0-9_-]+$",
"maxLength": 128,
"minLength": 16
},
"required": {
"type": "boolean"
}
}
}
}
},
"x402Version": 2
},
{
"error": "Payment required",
"accepts": [
{
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"extra": {
"name": "USD Coin",
"version": "2"
},
"payTo": "0xE295B6641b32998537Ae0f8E61Babf729EAEd6E5",
"amount": "30000",
"scheme": "exact",
"network": "eip155:8453",
"maxTimeoutSeconds": 1800
}
],
"resource": {
"url": "https://anomaly.forgemesh.io/api/token-scan",
"mimeType": "application/json",
"description": "Returns an anomaly score, story label, and raw transfer list for one token — flags unusual buying, selling, or distribution patterns (e.g. 'Distribution Event') by address or symbol."
},
"extensions": {
"bazaar": {
"info": {
"input": {
"body": {
"chain": "ethereum",
"token": "usdt",
"window": "24h"
},
"type": "http",
"method": "POST",
"bodyType": "json"
},
"output": {
"type": "json",
"example": {
"chain": "ethereum",
"story": "Distribution Event",
"token": "0xdac17f958d2ee523a2206206994597c13d831ec7",
"domain": "financial",
"novelty": "medium",
"peak_window": [
"CEX_INFLOW",
"CEX_INFLOW",
"WHALE_BUY"
],
"sequence_score": 42,
"events_collected": 18
}
}
},
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"input"
],
"properties": {
"input": {
"type": "object",
"required": [
"type",
"method",
"bodyType",
"body"
],
"properties": {
"body": {
"properties": {
"chain": {
"type": "string",
"description": "Blockchain: ethereum, base, or arbitrum"
},
"token": {
"type": "string",
"description": "Token contract address (0x...) or symbol (usdt, usdc, weth, link, uni, pepe, arb, etc.)"
},
"window": {
"type": "string",
"description": "Lookback window: 1h, 4h, 24h, or 168h"
}
}
},
"type": {
"type": "string",
"const": "http"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
}
},
"additionalProperties": false
},
"output": {
"type": "object",
"required": [
"type"
],
"properties": {
"type": {
"type": "string"
},
"example": {
"type": "object",
"properties": {
"chain": {
"type": "string"
},
"story": {
"type": "string"
},
"token": {
"type": "string"
},
"novelty": {
"type": "string"
},
"transfers": {
"type": "array",
"items": {
"type": "object"
}
},
"peak_window": {
"type": "array",
"items": {
"type": "string"
}
},
"sequence_score": {
"type": "integer"
},
"events_collected": {
"type": "integer"
}
}
}
}
}
}
}
},
"builder-code": {
"info": {
"a": "bc_4ypyymtf"
},
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"a": {
"type": "string",
"pattern": "^[a-z0-9_]{1,32}$",
"description": "App builder code"
},
"s": {
"type": "array",
"items": {
"type": "string",
"pattern": "^[a-z0-9_]{1,32}$"
},
"description": "Service builder codes"
},
"w": {
"type": "string",
"pattern": "^[a-z0-9_]{1,32}$",
"description": "Wallet builder code"
}
},
"additionalProperties": false
}
},
"offer-receipt": {
"info": {
"offers": [
{
"format": "eip712",
"payload": {
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"payTo": "0xE295B6641b32998537Ae0f8E61Babf729EAEd6E5",
"amount": "30000",
"scheme": "exact",
"network": "eip155:8453",
"version": 1,
"validUntil": 1784575380,
"resourceUrl": "https://anomaly.forgemesh.io/api/token-scan"
},
"signature": "0xb965ff0f9fe4a1e634cfd95188a314931d97b57dc00b13cfd2a6f3496e46bcc44eab22ecd5ffb09feb78a46e26ec78572321d4e6b109736d025958e1e5c9d51f1c",
"acceptIndex": 0
}
]
},
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"offers"
],
"properties": {
"offers": {
"type": "array",
"items": {
"type": "object",
"required": [
"format",
"signature"
],
"properties": {
"format": {
"type": "string"
},
"payload": {
"type": "object",
"required": [
"version",
"resourceUrl",
"scheme",
"network",
"asset",
"payTo",
"amount"
],
"properties": {
"asset": {
"type": "string"
},
"payTo": {
"type": "string"
},
"amount": {
"type": "string"
},
"scheme": {
"type": "string"
},
"network": {
"type": "string"
},
"version": {
"type": "integer"
},
"validUntil": {
"type": "integer"
},
"resourceUrl": {
"type": "string"
}
}
},
"signature": {
"type": "string"
},
"acceptIndex": {
"type": "integer"
}
}
}
}
}
}
},
"payment-identifier": {
"info": {
"required": false
},
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"required"
],
"properties": {
"id": {
"type": "string",
"pattern": "^[a-zA-Z0-9_-]+$",
"maxLength": 128,
"minLength": 16
},
"required": {
"type": "boolean"
}
}
}
}
},
"x402Version": 2
},
{
"error": "Payment required",
"accepts": [
{
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"extra": {
"name": "USD Coin",
"version": "2"
},
"payTo": "0xE295B6641b32998537Ae0f8E61Babf729EAEd6E5",
"amount": "30000",
"scheme": "exact",
"network": "eip155:8453",
"maxTimeoutSeconds": 1800
}
],
"resource": {
"url": "https://anomaly.forgemesh.io/api/address-scan",
"mimeType": "application/json",
"description": "Returns an anomaly score, story label, and activity log for one wallet — flags unusual patterns (e.g. 'Exchange Stress') like coordinated CEX inflows or rapid sell sequences."
},
"extensions": {
"bazaar": {
"info": {
"input": {
"body": {
"chain": "ethereum",
"window": "24h",
"address": "0x28c6c06298d514db089934071355e5743bf21d60"
},
"type": "http",
"method": "POST",
"bodyType": "json"
},
"output": {
"type": "json",
"example": {
"chain": "ethereum",
"story": "Exchange Stress",
"domain": "financial",
"address": "0x28c6c06298d514db089934071355e5743bf21d60",
"novelty": "medium",
"activity": [
{
"source": "Binance",
"symbol": "CEX_INFLOW",
"amount_eth": 150.2
}
],
"peak_window": [
"CEX_INFLOW",
"WHALE_SELL",
"CEX_INFLOW"
],
"sequence_score": 55,
"events_collected": 24
}
}
},
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"input"
],
"properties": {
"input": {
"type": "object",
"required": [
"type",
"method",
"bodyType",
"body"
],
"properties": {
"body": {
"properties": {
"chain": {
"type": "string",
"description": "Blockchain: ethereum, base, or arbitrum"
},
"window": {
"type": "string",
"description": "Lookback window: 1h, 4h, 24h, or 168h"
},
"address": {
"type": "string",
"description": "Wallet address (0x...)"
}
}
},
"type": {
"type": "string",
"const": "http"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
}
},
"additionalProperties": false
},
"output": {
"type": "object",
"required": [
"type"
],
"properties": {
"type": {
"type": "string"
},
"example": {
"type": "object",
"properties": {
"chain": {
"type": "string"
},
"story": {
"type": "string"
},
"address": {
"type": "string"
},
"novelty": {
"type": "string"
},
"activity": {
"type": "array",
"items": {
"type": "object"
}
},
"peak_window": {
"type": "array",
"items": {
"type": "string"
}
},
"sequence_score": {
"type": "integer"
},
"events_collected": {
"type": "integer"
}
}
}
}
}
}
}
},
"builder-code": {
"info": {
"a": "bc_4ypyymtf"
},
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"a": {
"type": "string",
"pattern": "^[a-z0-9_]{1,32}$",
"description": "App builder code"
},
"s": {
"type": "array",
"items": {
"type": "string",
"pattern": "^[a-z0-9_]{1,32}$"
},
"description": "Service builder codes"
},
"w": {
"type": "string",
"pattern": "^[a-z0-9_]{1,32}$",
"description": "Wallet builder code"
}
},
"additionalProperties": false
}
},
"offer-receipt": {
"info": {
"offers": [
{
"format": "eip712",
"payload": {
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"payTo": "0xE295B6641b32998537Ae0f8E61Babf729EAEd6E5",
"amount": "30000",
"scheme": "exact",
"network": "eip155:8453",
"version": 1,
"validUntil": 1784575380,
"resourceUrl": "https://anomaly.forgemesh.io/api/address-scan"
},
"signature": "0xe7dc50c74b7de2c4b726242a27cb026ca7617441ee44c77f0b20af6b5ded853805a7c047ae1d6d371107e5011849d061c307fe76249ed343926df4a3f08363491b",
"acceptIndex": 0
}
]
},
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"offers"
],
"properties": {
"offers": {
"type": "array",
"items": {
"type": "object",
"required": [
"format",
"signature"
],
"properties": {
"format": {
"type": "string"
},
"payload": {
"type": "object",
"required": [
"version",
"resourceUrl",
"scheme",
"network",
"asset",
"payTo",
"amount"
],
"properties": {
"asset": {
"type": "string"
},
"payTo": {
"type": "string"
},
"amount": {
"type": "string"
},
"scheme": {
"type": "string"
},
"network": {
"type": "string"
},
"version": {
"type": "integer"
},
"validUntil": {
"type": "integer"
},
"resourceUrl": {
"type": "string"
}
}
},
"signature": {
"type": "string"
},
"acceptIndex": {
"type": "integer"
}
}
}
}
}
}
},
"payment-identifier": {
"info": {
"required": false
},
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"required"
],
"properties": {
"id": {
"type": "string",
"pattern": "^[a-zA-Z0-9_-]+$",
"maxLength": 128,
"minLength": 16
},
"required": {
"type": "boolean"
}
}
}
}
},
"x402Version": 2
},
{
"error": "Payment required",
"accepts": [
{
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"extra": {
"name": "USD Coin",
"version": "2"
},
"payTo": "0xE295B6641b32998537Ae0f8E61Babf729EAEd6E5",
"amount": "20000",
"scheme": "exact",
"network": "eip155:8453",
"maxTimeoutSeconds": 1800
}
],
"resource": {
"url": "https://anomaly.forgemesh.io/api/whale-alerts",
"mimeType": "application/json",
"description": "Returns a list of recent whale transfers, CEX inflows/outflows, bridge moves, and stablecoin mint/burn events with amounts and timestamps — monitor large holder activity in real time."
},
"extensions": {
"bazaar": {
"info": {
"input": {
"type": "http",
"method": "GET",
"queryParams": {
"chain": "ethereum",
"hours": "4"
}
},
"output": {
"type": "json",
"example": {
"chain": "ethereum",
"alerts": [
{
"source": "Binance",
"symbol": "CEX_INFLOW",
"timestamp": 1719100800,
"amount_eth": 150.2
}
],
"alert_count": 5,
"window_hours": 4
}
}
},
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"input"
],
"properties": {
"input": {
"type": "object",
"required": [
"type",
"method"
],
"properties": {
"type": {
"type": "string",
"const": "http"
},
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"type": "object",
"properties": {
"chain": {
"type": "string",
"description": "Blockchain: ethereum, base, or arbitrum"
},
"hours": {
"type": "string",
"description": "Lookback window in hours: 1, 4, 24 (default: 4)"
}
}
}
},
"additionalProperties": false
},
"output": {
"type": "object",
"required": [
"type"
],
"properties": {
"type": {
"type": "string"
},
"example": {
"type": "object",
"properties": {
"chain": {
"type": "string"
},
"alerts": {
"type": "array",
"items": {
"type": "object"
}
},
"alert_count": {
"type": "integer"
},
"window_hours": {
"type": "integer"
}
}
}
}
}
}
}
},
"builder-code": {
"info": {
"a": "bc_4ypyymtf"
},
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"a": {
"type": "string",
"pattern": "^[a-z0-9_]{1,32}$",
"description": "App builder code"
},
"s": {
"type": "array",
"items": {
"type": "string",
"pattern": "^[a-z0-9_]{1,32}$"
},
"description": "Service builder codes"
},
"w": {
"type": "string",
"pattern": "^[a-z0-9_]{1,32}$",
"description": "Wallet builder code"
}
},
"additionalProperties": false
}
},
"offer-receipt": {
"info": {
"offers": [
{
"format": "eip712",
"payload": {
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"payTo": "0xE295B6641b32998537Ae0f8E61Babf729EAEd6E5",
"amount": "20000",
"scheme": "exact",
"network": "eip155:8453",
"version": 1,
"validUntil": 1784575380,
"resourceUrl": "https://anomaly.forgemesh.io/api/whale-alerts"
},
"signature": "0x6cffec765bd61d7c0baa0a83b3f87291f9fd5d875f50cf5715f253c6824666ea0fbbad15cde60f46589b1f32466263c6bb9185370ff51410458932f524a5feae1b",
"acceptIndex": 0
}
]
},
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"offers"
],
"properties": {
"offers": {
"type": "array",
"items": {
"type": "object",
"required": [
"format",
"signature"
],
"properties": {
"format": {
"type": "string"
},
"payload": {
"type": "object",
"required": [
"version",
"resourceUrl",
"scheme",
"network",
"asset",
"payTo",
"amount"
],
"properties": {
"asset": {
"type": "string"
},
"payTo": {
"type": "string"
},
"amount": {
"type": "string"
},
"scheme": {
"type": "string"
},
"network": {
"type": "string"
},
"version": {
"type": "integer"
},
"validUntil": {
"type": "integer"
},
"resourceUrl": {
"type": "string"
}
}
},
"signature": {
"type": "string"
},
"acceptIndex": {
"type": "integer"
}
}
}
}
}
}
},
"payment-identifier": {
"info": {
"required": false
},
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"required"
],
"properties": {
"id": {
"type": "string",
"pattern": "^[a-zA-Z0-9_-]+$",
"maxLength": 128,
"minLength": 16
},
"required": {
"type": "boolean"
}
}
}
}
},
"x402Version": 2
},
{
"error": "Payment required",
"accepts": [
{
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"extra": {
"name": "USD Coin",
"version": "2"
},
"payTo": "0xE295B6641b32998537Ae0f8E61Babf729EAEd6E5",
"amount": "10000",
"scheme": "exact",
"network": "eip155:8453",
"maxTimeoutSeconds": 1800
}
],
"resource": {
"url": "https://anomaly.forgemesh.io/api/mempool-anomaly",
"mimeType": "application/json",
"description": "Returns a real-time mempool anomaly score with current gas price vs 20-block median, pending whale swaps, and contract deploy counts — poll every 5s to catch MEV attacks or gas spikes as they happen."
},
"extensions": {
"bazaar": {
"info": {
"input": {
"type": "http",
"method": "GET",
"queryParams": {
"chain": "ethereum"
}
},
"output": {
"type": "json",
"example": {
"gas": {
"current_gwei": 45.2,
"base_fee_gwei": 12.1,
"ratio_vs_median": 3.12,
"median_20block_gwei": 14.5
},
"chain": "ethereum",
"story": "MEV Attack",
"domain": "mempool",
"novelty": "high",
"peak_window": [
"GAS_SPIKE",
"BIG_SWAP",
"WHALE_PENDING",
"MEV_SIGNAL",
"PENDING_NORMAL"
],
"pending_count": 247,
"pending_stats": {
"big_swaps": 3,
"whale_pending": 1,
"total_value_eth": 1823.5,
"contract_deploys": 2
},
"sequence_score": 72
}
}
},
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"input"
],
"properties": {
"input": {
"type": "object",
"required": [
"type",
"method"
],
"properties": {
"type": {
"type": "string",
"const": "http"
},
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"type": "object",
"properties": {
"chain": {
"type": "string",
"description": "Blockchain: ethereum or base (default: ethereum)"
}
}
}
},
"additionalProperties": false
},
"output": {
"type": "object",
"required": [
"type"
],
"properties": {
"type": {
"type": "string"
},
"example": {
"type": "object",
"properties": {
"gas": {
"type": "object"
},
"chain": {
"type": "string"
},
"story": {
"type": "string",
"description": "Human-readable mempool anomaly label"
},
"novelty": {
"enum": [
"low",
"medium",
"high",
"extreme"
],
"type": "string"
},
"peak_window": {
"type": "array",
"items": {
"type": "string"
}
},
"pending_count": {
"type": "integer"
},
"pending_stats": {
"type": "object"
},
"sequence_score": {
"type": "integer",
"description": "0=normal mempool, 100=highly anomalous"
}
}
}
}
}
}
}
},
"builder-code": {
"info": {
"a": "bc_4ypyymtf"
},
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"a": {
"type": "string",
"pattern": "^[a-z0-9_]{1,32}$",
"description": "App builder code"
},
"s": {
"type": "array",
"items": {
"type": "string",
"pattern": "^[a-z0-9_]{1,32}$"
},
"description": "Service builder codes"
},
"w": {
"type": "string",
"pattern": "^[a-z0-9_]{1,32}$",
"description": "Wallet builder code"
}
},
"additionalProperties": false
}
},
"offer-receipt": {
"info": {
"offers": [
{
"format": "eip712",
"payload": {
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"payTo": "0xE295B6641b32998537Ae0f8E61Babf729EAEd6E5",
"amount": "10000",
"scheme": "exact",
"network": "eip155:8453",
"version": 1,
"validUntil": 1784575380,
"resourceUrl": "https://anomaly.forgemesh.io/api/mempool-anomaly"
},
"signature": "0x355cbc632855d583437b962908537382a132a0427373ea4349d4b1352aedbbe3704050587f9a3d420bd5ba5b0221cc740006b50961b6dc3e315e3dff073119cf1b",
"acceptIndex": 0
}
]
},
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"offers"
],
"properties": {
"offers": {
"type": "array",
"items": {
"type": "object",
"required": [
"format",
"signature"
],
"properties": {
"format": {
"type": "string"
},
"payload": {
"type": "object",
"required": [
"version",
"resourceUrl",
"scheme",
"network",
"asset",
"payTo",
"amount"
],
"properties": {
"asset": {
"type": "string"
},
"payTo": {
"type": "string"
},
"amount": {
"type": "string"
},
"scheme": {
"type": "string"
},
"network": {
"type": "string"
},
"version": {
"type": "integer"
},
"validUntil": {
"type": "integer"
},
"resourceUrl": {
"type": "string"
}
}
},
"signature": {
"type": "string"
},
"acceptIndex": {
"type": "integer"
}
}
}
}
}
}
},
"payment-identifier": {
"info": {
"required": false
},
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"required"
],
"properties": {
"id": {
"type": "string",
"pattern": "^[a-zA-Z0-9_-]+$",
"maxLength": 128,
"minLength": 16
},
"required": {
"type": "boolean"
}
}
}
}
},
"x402Version": 2
},
{
"error": "Payment required",
"accepts": [
{
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"extra": {
"name": "USD Coin",
"version": "2"
},
"payTo": "0xE295B6641b32998537Ae0f8E61Babf729EAEd6E5",
"amount": "10000",
"scheme": "exact",
"network": "eip155:8453",
"maxTimeoutSeconds": 1800
}
],
"resource": {
"url": "https://anomaly.forgemesh.io/api/depeg-monitor",
"mimeType": "application/json",
"description": "Returns per-stablecoin price and deviation from peg (USDC, USDT, DAI) with an overall status and anomaly score — poll every minute to catch micro-depegs before they become crises."
},
"extensions": {
"bazaar": {
"info": {
"input": {
"type": "http",
"method": "GET",
"queryParams": {
"chain": "ethereum"
}
},
"output": {
"type": "json",
"example": {
"chain": "ethereum",
"coins": {
"USDC": {
"price": 0.9965,
"status": "PEG_DRIFT",
"deviation_pct": 0.35
},
"USDT": {
"price": 1.0001,
"status": "PEG_STABLE",
"deviation_pct": 0.01
}
},
"story": "Single Coin Drift",
"domain": "depeg",
"novelty": "medium",
"drift_count": 1,
"peak_window": [
"USDC_DRIFT",
"PEG_DRIFT",
"SPREAD_NORMAL",
"VOLUME_NORMAL"
],
"overall_status": "PEG_DRIFT",
"sequence_score": 55,
"max_deviation_pct": 0.35
}
}
},
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"input"
],
"properties": {
"input": {
"type": "object",
"required": [
"type",
"method"
],
"properties": {
"type": {
"type": "string",
"const": "http"
},
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"type": "object",
"properties": {
"chain": {
"type": "string",
"description": "Blockchain: ethereum, base, or arbitrum (default: ethereum)"
}
}
}
},
"additionalProperties": false
},
"output": {
"type": "object",
"required": [
"type"
],
"properties": {
"type": {
"type": "string"
},
"example": {
"type": "object",
"properties": {
"chain": {
"type": "string"
},
"coins": {
"type": "object",
"description": "Per-stablecoin price, deviation, and status"
},
"story": {
"type": "string"
},
"novelty": {
"enum": [
"low",
"medium",
"high",
"extreme"
],
"type": "string"
},
"drift_count": {
"type": "integer"
},
"peak_window": {
"type": "array",
"items": {
"type": "string"
}
},
"overall_status": {
"enum": [
"PEG_STABLE",
"PEG_DRIFT",
"PEG_WARN",
"PEG_DEPEG"
],
"type": "string"
},
"sequence_score": {
"type": "integer",
"description": "0=all pegs stable, 100=depeg crisis"
},
"max_deviation_pct": {
"type": "number"
}
}
}
}
}
}
}
},
"builder-code": {
"info": {
"a": "bc_4ypyymtf"
},
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"a": {
"type": "string",
"pattern": "^[a-z0-9_]{1,32}$",
"description": "App builder code"
},
"s": {
"type": "array",
"items": {
"type": "string",
"pattern": "^[a-z0-9_]{1,32}$"
},
"description": "Service builder codes"
},
"w": {
"type": "string",
"pattern": "^[a-z0-9_]{1,32}$",
"description": "Wallet builder code"
}
},
"additionalProperties": false
}
},
"offer-receipt": {
"info": {
"offers": [
{
"format": "eip712",
"payload": {
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"payTo": "0xE295B6641b32998537Ae0f8E61Babf729EAEd6E5",
"amount": "10000",
"scheme": "exact",
"network": "eip155:8453",
"version": 1,
"validUntil": 1784575381,
"resourceUrl": "https://anomaly.forgemesh.io/api/depeg-monitor"
},
"signature": "0x0f3e0757538baa56f6dc5c8907d8619a5ea778f1b7c1e0898f1b24abe884c5ec62921c0c329cf323a51c6167e3d68cfef95900a50075e50131ebc6694a0f30fe1b",
"acceptIndex": 0
}
]
},
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"offers"
],
"properties": {
"offers": {
"type": "array",
"items": {
"type": "object",
"required": [
"format",
"signature"
],
"properties": {
"format": {
"type": "string"
},
"payload": {
"type": "object",
"required": [
"version",
"resourceUrl",
"scheme",
"network",
"asset",
"payTo",
"amount"
],
"properties": {
"asset": {
"type": "string"
},
"payTo": {
"type": "string"
},
"amount": {
"type": "string"
},
"scheme": {
"type": "string"
},
"network": {
"type": "string"
},
"version": {
"type": "integer"
},
"validUntil": {
"type": "integer"
},
"resourceUrl": {
"type": "string"
}
}
},
"signature": {
"type": "string"
},
"acceptIndex": {
"type": "integer"
}
}
}
}
}
}
},
"payment-identifier": {
"info": {
"required": false
},
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"required"
],
"properties": {
"id": {
"type": "string",
"pattern": "^[a-zA-Z0-9_-]+$",
"maxLength": 128,
"minLength": 16
},
"required": {
"type": "boolean"
}
}
}
}
},
"x402Version": 2
},
{
"error": "Payment required",
"accepts": [
{
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"extra": {
"name": "USD Coin",
"version": "2"
},
"payTo": "0xE295B6641b32998537Ae0f8E61Babf729EAEd6E5",
"amount": "20000",
"scheme": "exact",
"network": "eip155:8453",
"maxTimeoutSeconds": 1800
}
],
"resource": {
"url": "https://anomaly.forgemesh.io/api/squawk-alerts",
"mimeType": "application/json",
"description": "Returns live counts of tracked aircraft, active emergency squawks by type (hijack, radio failure, general emergency), and per-flight position data — monitor global airspace emergencies in real time."
},
"extensions": {
"bazaar": {
"info": {
"input": {
"type": "http",
"method": "GET",
"queryParams": {}
},
"output": {
"type": "json",
"example": {
"alerts": [
{
"icao24": "a1b2c3",
"squawk": "7700",
"callsign": "UAL123",
"latitude": 40.2,
"longitude": -73.1,
"squawk_type": "GENERAL_EMERGENCY"
}
],
"by_type": {
"hijack": 0,
"radio_failure": 1,
"general_emergency": 1
},
"timestamp": 1719100800,
"total_tracked": 8342,
"emergency_count": 2
}
}
},
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"input"
],
"properties": {
"input": {
"type": "object",
"required": [
"type",
"method"
],
"properties": {
"type": {
"type": "string",
"const": "http"
},
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"type": "object",
"properties": {}
}
},
"additionalProperties": false
},
"output": {
"type": "object",
"required": [
"type"
],
"properties": {
"type": {
"type": "string"
},
"example": {
"type": "object",
"properties": {
"alerts": {
"type": "array",
"items": {
"type": "object"
}
},
"by_type": {
"type": "object"
},
"total_tracked": {
"type": "integer"
},
"emergency_count": {
"type": "integer"
}
}
}
}
}
}
}
},
"builder-code": {
"info": {
"a": "bc_4ypyymtf"
},
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"a": {
"type": "string",
"pattern": "^[a-z0-9_]{1,32}$",
"description": "App builder code"
},
"s": {
"type": "array",
"items": {
"type": "string",
"pattern": "^[a-z0-9_]{1,32}$"
},
"description": "Service builder codes"
},
"w": {
"type": "string",
"pattern": "^[a-z0-9_]{1,32}$",
"description": "Wallet builder code"
}
},
"additionalProperties": false
}
},
"offer-receipt": {
"info": {
"offers": [
{
"format": "eip712",
"payload": {
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"payTo": "0xE295B6641b32998537Ae0f8E61Babf729EAEd6E5",
"amount": "20000",
"scheme": "exact",
"network": "eip155:8453",
"version": 1,
"validUntil": 1784575381,
"resourceUrl": "https://anomaly.forgemesh.io/api/squawk-alerts"
},
"signature": "0x621c7bce900a65a073e9ac92f0fa2943a5eb2e251828dc45a13b0c9231b220d72b8f9a95ab7c8beb3cb6b6974d0a07287bc50a1f1e891e4bef86cd2d39a2f1d01c",
"acceptIndex": 0
}
]
},
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"offers"
],
"properties": {
"offers": {
"type": "array",
"items": {
"type": "object",
"required": [
"format",
"signature"
],
"properties": {
"format": {
"type": "string"
},
"payload": {
"type": "object",
"required": [
"version",
"resourceUrl",
"scheme",
"network",
"asset",
"payTo",
"amount"
],
"properties": {
"asset": {
"type": "string"
},
"payTo": {
"type": "string"
},
"amount": {
"type": "string"
},
"scheme": {
"type": "string"
},
"network": {
"type": "string"
},
"version": {
"type": "integer"
},
"validUntil": {
"type": "integer"
},
"resourceUrl": {
"type": "string"
}
}
},
"signature": {
"type": "string"
},
"acceptIndex": {
"type": "integer"
}
}
}
}
}
}
},
"payment-identifier": {
"info": {
"required": false
},
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"required"
],
"properties": {
"id": {
"type": "string",
"pattern": "^[a-zA-Z0-9_-]+$",
"maxLength": 128,
"minLength": 16
},
"required": {
"type": "boolean"
}
}
}
}
},
"x402Version": 2
},
{
"error": "Payment required",
"accepts": [
{
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"extra": {
"name": "USD Coin",
"version": "2"
},
"payTo": "0xE295B6641b32998537Ae0f8E61Babf729EAEd6E5",
"amount": "30000",
"scheme": "exact",
"network": "eip155:8453",
"maxTimeoutSeconds": 1800
}
],
"resource": {
"url": "https://anomaly.forgemesh.io/api/flight-scan",
"mimeType": "application/json",
"description": "Returns an anomaly score, story label, and aircraft counts for a named airspace region — flags unusual clustering of emergency squawks, rapid descents, or speed anomalies."
},
"extensions": {
"bazaar": {
"info": {
"input": {
"body": {
"region": "north_atlantic"
},
"type": "http",
"method": "POST",
"bodyType": "json"
},
"output": {
"type": "json",
"example": {
"story": "Elevated Activity",
"domain": "aviation",
"region": "north_atlantic",
"novelty": "medium",
"airborne": 389,
"peak_window": [
"ENROUTE",
"SQUAWK_7700",
"RAPID_DESCENT"
],
"sequence_score": 34,
"total_aircraft": 412
}
}
},
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"input"
],
"properties": {
"input": {
"type": "object",
"required": [
"type",
"method",
"bodyType",
"body"
],
"properties": {
"body": {
"properties": {
"region": {
"type": "string",
"description": "Airspace region: north_atlantic, europe, north_america, asia_pacific, middle_east, africa, or global"
}
}
},
"type": {
"type": "string",
"const": "http"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
}
},
"additionalProperties": false
},
"output": {
"type": "object",
"required": [
"type"
],
"properties": {
"type": {
"type": "string"
},
"example": {
"type": "object",
"properties": {
"story": {
"type": "string"
},
"region": {
"type": "string"
},
"novelty": {
"type": "string"
},
"airborne": {
"type": "integer"
},
"peak_window": {
"type": "array",
"items": {
"type": "string"
}
},
"sequence_score": {
"type": "integer"
},
"total_aircraft": {
"type": "integer"
}
}
}
}
}
}
}
},
"builder-code": {
"info": {
"a": "bc_4ypyymtf"
},
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"a": {
"type": "string",
"pattern": "^[a-z0-9_]{1,32}$",
"description": "App builder code"
},
"s": {
"type": "array",
"items": {
"type": "string",
"pattern": "^[a-z0-9_]{1,32}$"
},
"description": "Service builder codes"
},
"w": {
"type": "string",
"pattern": "^[a-z0-9_]{1,32}$",
"description": "Wallet builder code"
}
},
"additionalProperties": false
}
},
"offer-receipt": {
"info": {
"offers": [
{
"format": "eip712",
"payload": {
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"payTo": "0xE295B6641b32998537Ae0f8E61Babf729EAEd6E5",
"amount": "30000",
"scheme": "exact",
"network": "eip155:8453",
"version": 1,
"validUntil": 1784575381,
"resourceUrl": "https://anomaly.forgemesh.io/api/flight-scan"
},
"signature": "0x2c49ddb50ce1baf15094f139910bc7843932807b1caea17a2ba7b6f24d35aefa4b4782cc6d224b62ac3c17f2cff5f6d28ccaee7fab9824065277f0f2e1e301eb1c",
"acceptIndex": 0
}
]
},
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"offers"
],
"properties": {
"offers": {
"type": "array",
"items": {
"type": "object",
"required": [
"format",
"signature"
],
"properties": {
"format": {
"type": "string"
},
"payload": {
"type": "object",
"required": [
"version",
"resourceUrl",
"scheme",
"network",
"asset",
"payTo",
"amount"
],
"properties": {
"asset": {
"type": "string"
},
"payTo": {
"type": "string"
},
"amount": {
"type": "string"
},
"scheme": {
"type": "string"
},
"network": {
"type": "string"
},
"version": {
"type": "integer"
},
"validUntil": {
"type": "integer"
},
"resourceUrl": {
"type": "string"
}
}
},
"signature": {
"type": "string"
},
"acceptIndex": {
"type": "integer"
}
}
}
}
}
}
},
"payment-identifier": {
"info": {
"required": false
},
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"required"
],
"properties": {
"id": {
"type": "string",
"pattern": "^[a-zA-Z0-9_-]+$",
"maxLength": 128,
"minLength": 16
},
"required": {
"type": "boolean"
}
}
}
}
},
"x402Version": 2
},
{
"error": "Payment required",
"accepts": [
{
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"extra": {
"name": "USD Coin",
"version": "2"
},
"payTo": "0xE295B6641b32998537Ae0f8E61Babf729EAEd6E5",
"amount": "30000",
"scheme": "exact",
"network": "eip155:8453",
"maxTimeoutSeconds": 1800
}
],
"resource": {
"url": "https://anomaly.forgemesh.io/api/repo-scan",
"mimeType": "application/json",
"description": "Returns an anomaly score, story label, and growth metrics (stars/day, fork ratio, age) for one GitHub repo — flags overnight star explosions, fork surges, or issue floods."
},
"extensions": {
"bazaar": {
"info": {
"input": {
"body": {
"repo": "vercel/ai"
},
"type": "http",
"method": "POST",
"bodyType": "json"
},
"output": {
"type": "json",
"example": {
"repo": "vercel/ai",
"story": "Strong Momentum",
"domain": "creator",
"metrics": {
"stars": 12500,
"age_days": 365,
"language": "TypeScript",
"fork_ratio": 0.18,
"stars_per_day": 34.2
},
"novelty": "medium",
"peak_window": [
"HOT_REPO",
"FORK_SURGE"
],
"sequence_score": 44
}
}
},
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"input"
],
"properties": {
"input": {
"type": "object",
"required": [
"type",
"method",
"bodyType",
"body"
],
"properties": {
"body": {
"properties": {
"repo": {
"type": "string",
"description": "GitHub repo in owner/repo format, e.g. vercel/ai"
}
}
},
"type": {
"type": "string",
"const": "http"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
}
},
"additionalProperties": false
},
"output": {
"type": "object",
"required": [
"type"
],
"properties": {
"type": {
"type": "string"
},
"example": {
"type": "object",
"properties": {
"repo": {
"type": "string"
},
"story": {
"type": "string"
},
"metrics": {
"type": "object"
},
"novelty": {
"type": "string"
},
"peak_window": {
"type": "array",
"items": {
"type": "string"
}
},
"sequence_score": {
"type": "integer"
}
}
}
}
}
}
}
},
"builder-code": {
"info": {
"a": "bc_4ypyymtf"
},
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"a": {
"type": "string",
"pattern": "^[a-z0-9_]{1,32}$",
"description": "App builder code"
},
"s": {
"type": "array",
"items": {
"type": "string",
"pattern": "^[a-z0-9_]{1,32}$"
},
"description": "Service builder codes"
},
"w": {
"type": "string",
"pattern": "^[a-z0-9_]{1,32}$",
"description": "Wallet builder code"
}
},
"additionalProperties": false
}
},
"offer-receipt": {
"info": {
"offers": [
{
"format": "eip712",
"payload": {
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"payTo": "0xE295B6641b32998537Ae0f8E61Babf729EAEd6E5",
"amount": "30000",
"scheme": "exact",
"network": "eip155:8453",
"version": 1,
"validUntil": 1784575381,
"resourceUrl": "https://anomaly.forgemesh.io/api/repo-scan"
},
"signature": "0x86f18778d968dae92c4275b53d18384c4ebbf039a3f7c4ca87cc9829b69810be7bbb569e74c5807591fb7ff3cb535b3028765b1c6ac596c79b57f2e0fac75d971c",
"acceptIndex": 0
}
]
},
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"offers"
],
"properties": {
"offers": {
"type": "array",
"items": {
"type": "object",
"required": [
"format",
"signature"
],
"properties": {
"format": {
"type": "string"
},
"payload": {
"type": "object",
"required": [
"version",
"resourceUrl",
"scheme",
"network",
"asset",
"payTo",
"amount"
],
"properties": {
"asset": {
"type": "string"
},
"payTo": {
"type": "string"
},
"amount": {
"type": "string"
},
"scheme": {
"type": "string"
},
"network": {
"type": "string"
},
"version": {
"type": "integer"
},
"validUntil": {
"type": "integer"
},
"resourceUrl": {
"type": "string"
}
}
},
"signature": {
"type": "string"
},
"acceptIndex": {
"type": "integer"
}
}
}
}
}
}
},
"payment-identifier": {
"info": {
"required": false
},
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"required"
],
"properties": {
"id": {
"type": "string",
"pattern": "^[a-zA-Z0-9_-]+$",
"maxLength": 128,
"minLength": 16
},
"required": {
"type": "boolean"
}
}
}
}
},
"x402Version": 2
},
{
"error": "Payment required",
"accepts": [
{
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"extra": {
"name": "USD Coin",
"version": "2"
},
"payTo": "0xE295B6641b32998537Ae0f8E61Babf729EAEd6E5",
"amount": "20000",
"scheme": "exact",
"network": "eip155:8453",
"maxTimeoutSeconds": 1800
}
],
"resource": {
"url": "https://anomaly.forgemesh.io/api/trending-signal",
"mimeType": "application/json",
"description": "Returns a ranked list of GitHub repos with anomalous star velocity (stars/day, fork ratio) plus an overall trend score — spot repos going viral before they hit mainstream feeds."
},
"extensions": {
"bazaar": {
"info": {
"input": {
"type": "http",
"method": "GET",
"queryParams": {
"days": "7"
}
},
"output": {
"type": "json",
"example": {
"story": "Trend Surge",
"domain": "creator",
"novelty": "high",
"scanned": 30,
"signals": [
{
"stars": 1200,
"language": "TypeScript",
"full_name": "owner/repo",
"fork_ratio": 0.12,
"stars_per_day": 171.4
}
],
"since_date": "2026-06-17",
"signal_count": 5,
"sequence_score": 68
}
}
},
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"input"
],
"properties": {
"input": {
"type": "object",
"required": [
"type",
"method"
],
"properties": {
"type": {
"type": "string",
"const": "http"
},
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"type": "object",
"properties": {
"days": {
"type": "string",
"description": "Search repos created in the last N days: 3, 7 (default), 14, or 30"
}
}
}
},
"additionalProperties": false
},
"output": {
"type": "object",
"required": [
"type"
],
"properties": {
"type": {
"type": "string"
},
"example": {
"type": "object",
"properties": {
"story": {
"type": "string"
},
"novelty": {
"type": "string"
},
"signals": {
"type": "array",
"items": {
"type": "object"
}
},
"signal_count": {
"type": "integer"
},
"sequence_score": {
"type": "integer"
}
}
}
}
}
}
}
},
"builder-code": {
"info": {
"a": "bc_4ypyymtf"
},
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"a": {
"type": "string",
"pattern": "^[a-z0-9_]{1,32}$",
"description": "App builder code"
},
"s": {
"type": "array",
"items": {
"type": "string",
"pattern": "^[a-z0-9_]{1,32}$"
},
"description": "Service builder codes"
},
"w": {
"type": "string",
"pattern": "^[a-z0-9_]{1,32}$",
"description": "Wallet builder code"
}
},
"additionalProperties": false
}
},
"offer-receipt": {
"info": {
"offers": [
{
"format": "eip712",
"payload": {
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"payTo": "0xE295B6641b32998537Ae0f8E61Babf729EAEd6E5",
"amount": "20000",
"scheme": "exact",
"network": "eip155:8453",
"version": 1,
"validUntil": 1784575381,
"resourceUrl": "https://anomaly.forgemesh.io/api/trending-signal"
},
"signature": "0xaaa834473f98211e36c6ae627db694e9054ab94fc802eadcccc37cc3b3eeeb481f2d066d20e9b6b92c48fe9e60a4bbc8707e3b4794cb6c50c6a6f2287855c9a11c",
"acceptIndex": 0
}
]
},
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"offers"
],
"properties": {
"offers": {
"type": "array",
"items": {
"type": "object",
"required": [
"format",
"signature"
],
"properties": {
"format": {
"type": "string"
},
"payload": {
"type": "object",
"required": [
"version",
"resourceUrl",
"scheme",
"network",
"asset",
"payTo",
"amount"
],
"properties": {
"asset": {
"type": "string"
},
"payTo": {
"type": "string"
},
"amount": {
"type": "string"
},
"scheme": {
"type": "string"
},
"network": {
"type": "string"
},
"version": {
"type": "integer"
},
"validUntil": {
"type": "integer"
},
"resourceUrl": {
"type": "string"
}
}
},
"signature": {
"type": "string"
},
"acceptIndex": {
"type": "integer"
}
}
}
}
}
}
},
"payment-identifier": {
"info": {
"required": false
},
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"required"
],
"properties": {
"id": {
"type": "string",
"pattern": "^[a-zA-Z0-9_-]+$",
"maxLength": 128,
"minLength": 16
},
"required": {
"type": "boolean"
}
}
}
}
},
"x402Version": 2
}
] UPTIME
RECENT CHECKS
OVER TIME
All charts share the 24h window selected here. Every series is also served as JSON at /api/v1/services/forgemesh-anomaly-tracker/price, /scores, /volume and /buyers. On-chain volume and distinct buyers are measured over the service's settlement address and are a conservative undercount (only settlements that reach a measured facilitator are counted).
Median across 10 endpoints. Use the selector to isolate one.
COMPLIANCE
11/11 checks pass · grade A- 402 payload captured
- accepts[] array present
- payTo address recoverable
- payTo at accepts[0].payTo (conformant shape)
- payTo is a valid on-chain address
- atomic price declared
- atomic price in a sane range
- asset (token) address declared
- network resolves to CAIP-2
- payment scheme declared
- served over HTTPS
EMBED THIS BADGE
<a href="https://x402-list.com/services/forgemesh-anomaly-tracker?utm_source=badge&utm_medium=referral&utm_campaign=embed"> <img src="https://x402-list.com/badge/forgemesh-anomaly-tracker.svg" alt="ForgeMesh Anomaly Tracker listed on x402-list" height="28"> </a>
[](https://x402-list.com/services/forgemesh-anomaly-tracker?utm_source=badge&utm_medium=referral&utm_campaign=embed)
<a href="https://x402-list.com/services/forgemesh-anomaly-tracker?utm_source=badge&utm_medium=referral&utm_campaign=embed"> <img src="https://x402-list.com/badge/forgemesh-anomaly-tracker.svg?data=uptime" alt="ForgeMesh Anomaly Tracker uptime on x402-list" height="28"> </a>