Kronos Market Intelligence

Calibrated forecast ranges, risk context, and auditable decision records.

Kronos is not a buy/sell oracle. It gives agents structured market context they can verify.


Most signal APIs stop after a direction call. Kronos leads with an 80% calibrated price range, risk state, and a decision_id when an agent wants to journal and audit a probabilistic setup.

The product loop is simple: read the range and risk context, log a decision only when useful, then verify the outcome.

1. preflight  - check current conditions
2. decision   - journal setup + decision_id
3. audit      - verify outcome vs prices

Trust the process less. Verify the record more.


  • Kronos Forecast — calibrated 80% price range
  • Kronos Signals — market context and freshness
  • Kronos Decision — probabilistic journal entry with a decision_id
  • Kronos Audit — outcome check against later prices
  • Kronos Risk — current risk state and cooldown context

Directional values are supporting context, not standalone trade instructions. Use them with the calibrated range, risk state, and audit record.

PositiveBullish market context
NegativeBearish market context
0.00-0.01Weak magnitude
0.01-0.03Moderate magnitude
0.03+Strong magnitude

Directional values are supporting context, not standalone trade instructions. Use them with the calibrated range, risk state, and audit record.


Endpoint What it does Price
Kronos Market Context
/api/kronos/signals Kronos Signals — market context, score details, and freshness $0.05
/api/kronos/history Recent context history for analysis and audit support $0.05
/api/kronos/preflight Pre-decision conditions check — cooldowns, market state, freshness, warnings $0.05
/api/kronos/decision Kronos Decision — probabilistic journal entry with a decision_id $0.15
/api/kronos/audit Kronos Audit — verify prior decision outcome against real prices $0.07
/api/kronos/forecast Kronos Forecast — conformally-calibrated 80% price range (~0.80 empirical coverage) $0.05
/api/kronos/risk Current market risk state and cooldown context $0.02
AI Image Generation — imagegen.coinopai.com
/generate Generate an AI image from a text prompt — returns PNG URL. Aspect: square / landscape / portrait / standard $0.25
Also included — Agent Automation Prompts
/api/categories List all 35 automation categories $0.005
/api/services List all 115 supported platforms $0.005
/api/search Search 819 automation prompts by keyword $0.01
/api/automation/:slug Retrieve full automation prompt by slug $0.01

Latest market context KRONOS
# $0.05 USDC — current Kronos context and freshness
curl -i "https://crypto.forgemesh.io/api/kronos/signals"
Sample response (truncated)
{
  "ts": "2026-06-01T02:15:00.000Z",
  "timeframe": "15m",
  "regime": "chop",
  "signals": {
    "BTC/USD": -0.0118,
    "ETH/USD": -0.0042,
    "SOL/USD": 0.0067,
    "XRP/USD": -0.0021,
    "ADA/USD": 0.0014
  },
  "top_k": ["SOL/USD", "ADA/USD"],
  "signal_age_hours": 0.08,
  "data_freshness": "FRESH"
}
Journal a setup. Verify the outcome. KRONOS
# Decision — $0.15 USDC, returns decision_id for later audit
curl -i "https://crypto.forgemesh.io/api/kronos/decision?symbol=BTC"
Sample response (truncated)
{
  "decision_id": "9f3a2c41-7b6e-4a32-b2e4-1a72d5b8c901",
  "symbol": "BTC/USD",
  "suggested_action": "CONSIDER_SHORT",
  "confidence": 0.51,
  "certainty": "PROBABILISTIC",
  "directional_edge": "none_demonstrated",
  "raw_signal": -0.0118,
  "regime": "chop",
  "risk_level": "NORMAL",
  "data_freshness": "FRESH",
  "next_step": {
    "endpoint": "/api/kronos/audit?decision_id=9f3a2c41-7b6e-4a32-b2e4-1a72d5b8c901&window=1h",
    "cost": "$0.07 USDC"
  }
}
Audit — was it right?
# Chain the audit call with the decision_id above
curl -i "https://crypto.forgemesh.io/api/kronos/audit?decision_id=9f3a2c41-7b6e-4a32-b2e4-1a72d5b8c901&window=1h"
Sample response (truncated)
{
  "decision_id": "9f3a2c41-7b6e-4a32-b2e4-1a72d5b8c901",
  "symbol": "BTC",
  "suggested_action": "CONSIDER_SHORT",
  "confidence": 0.51,
  "evaluation_window": "1h",
  "prices": {
    "entry": 73508.21,
    "exit": 72102.44
  },
  "outcome": {
    "pnl_pct": -0.01912,
    "direction_correct": true,
    "verdict": "GOOD_DECISION"
  }
}
List automation categories
# $0.005 USDC — discover prompt categories
curl -i "https://crypto.forgemesh.io/api/categories"
Sample response (truncated)
{
  "categories": [
    { "name": "AI", "slug": "ai", "count": 603 },
    { "name": "Content Creation", "slug": "content-creation", "count": 314 },
    { "name": "Productivity", "slug": "productivity", "count": 238 }
  ],
  "_note": "Sample response truncated for readability."
}
List supported services
# $0.005 USDC — discover supported app/platform names
curl -i "https://crypto.forgemesh.io/api/services"
Sample response (truncated)
{
  "services": [
    { "key": "airtable", "name": "Airtable", "auth_type": "token" },
    { "key": "anthropic", "name": "Anthropic (Claude)", "auth_type": "api_key" },
    { "key": "apify", "name": "Apify", "auth_type": "api_key" }
  ],
  "_note": "Sample response truncated for readability."
}
Search automation prompts
# x402 client handles payment automatically (~$0.01 USDC)
curl -i "https://crypto.forgemesh.io/api/search?q=social+media&limit=2"
Sample response (truncated)
{
  "results": [
    {
      "slug": "automated-ai-social-media-system",
      "title": "Automated AI Social Media System",
      "description": "Analyzes an article, writes posts, generates images and videos, then publishes across platforms.",
      "complexity": "high",
      "services": ["OpenAI", "Google Sheets", "HeyGen"]
    },
    {
      "slug": "n8n-ai-avatar-for-social-media-automation",
      "title": "n8n AI Avatar for Social Media Automation",
      "description": "Creates talking-head avatar videos and distributes them to social platforms.",
      "services": ["OpenAI", "HeyGen", "Blotato"]
    }
  ],
  "total": 59,
  "limit": 2,
  "offset": 0,
  "_note": "Sample response truncated for readability."
}
Fetch a full automation prompt
# $0.01 USDC — returns the full prompt/template for one workflow
curl -i "https://crypto.forgemesh.io/api/automation/automated-ai-social-media-system"
Sample response (truncated)
{
  "slug": "automated-ai-social-media-system",
  "title": "Automated AI Social Media System",
  "description": "A fully automated system that analyzes an article and creates text, image, and video posts across social platforms.",
  "complexity": "high",
  "services": ["OpenAI", "Google Sheets", "HeyGen"],
  "template_json": {
    "trigger": "new_article_row_in_google_sheets",
    "steps": [
      "summarize source article",
      "write channel-specific social posts",
      "generate media assets",
      "publish through connected social APIs"
    ]
  },
  "_note": "Sample response truncated; paid response includes the complete automation record."
}
Generate an AI image
# $0.25 USDC — returns image URL (PNG)
curl -i "https://imagegen.coinopai.com/generate?prompt=a+glowing+robot+trading+crypto&aspect=1:1"
Sample response (truncated)
{
  "image_url": "https://.../images/9f3a2c41...",
  "prompt": "a glowing robot trading crypto",
  "aspect": "1:1",
  "generated_at": "2026-06-01T02:18:00.000Z",
  "_note": "Sample response truncated; image_url may be longer in production."
}

Add to claude_desktop_config.json

{
  "mcpServers": {
    "coinopai": {
      "command": "npx",
      "args": ["-y", "coinopai-mcp"],
      "env": {
        "WALLET_PRIVATE_KEY": "0x<your-key>"
      }
    }
  }
}
Package: coinopai-mcp on npm

ImageGen imagegen.coinopai.com

AI image generation via x402 micropayments. Four paid tiers from $0.25-$0.75 USDC on Base mainnet — no API key, no subscription. Send a prompt, get a PNG URL.

Square · Landscape · Portrait · Standard · 10 req/min/IP · Affiliate eligible

Not Financial Advice

Kronos provides algorithmic market context generated from market data — not human recommendations. Nothing on this page or returned by any Kronos endpoint constitutes financial advice, investment advice, or a recommendation to buy or sell any asset.

Crypto markets are volatile. You can lose money. Directional bias alone has not been validated as a standalone trading strategy, and confidence scores are not certainty.

This service is for informational and experimental purposes only. Always do your own research before making any trading decisions. Never trade with funds you cannot afford to lose.