POSTalphaIntelligence

Mundane Hot Zones

Rank supplied regions as Beyond The Veil style hot zones for a topic and time window using owned transit context and structured generation.

POST /v1/mundane/hot-zonesQuickstartOpenAPI JSON
Credits

5 credits per run

Minimum Plan

Pro+

Billing Lane

World Signals

SDK Helper

mundaneHotZones / mundane_hot_zones

Inputs
  • +topic
  • +regions
  • +window days
  • +depth
Outputs
  • +regional scores
  • +signals
  • +likely manifestations
  • +watch items
  • +synthesis
Tool Functions

Capabilities behind this endpoint

3 functions
hotzones.score

Scores supplied regions on a 0-100 hot-zone scale.

mundane.region.rank

Ranks likely pressure regions for a topic.

watch.items.generate

Creates concrete monitoring items.

Market Hot Zones request
{
  "topic": "markets",
  "regions": ["United States", "Europe", "China", "Middle East"],
  "window_days": 30
}
Market Hot Zones response
{
  "request_id": "req_...",
  "data": {
    "topic": "markets",
    "hot_zones": [
      { "region": "United States", "score": 82, "signal": "Policy and liquidity stress cluster." }
    ]
  },
  "usage": { "lane": "ai", "credits": 5, "billableUnits": 1 }
}
curl
curl https://theleokingai.com/api/v1/mundane/hot-zones \
  -X POST \
  -H "Accept: application/json" \
  -H "x-api-key: $LEOKING_API_KEY" \
  -H "Content-Type: application/json" \
  -H "Idempotency-Key: mundane-hot-zones-subject-123-v1" \
  -d '{
  "topic": "markets",
  "regions": ["United States", "Europe", "China", "Middle East"],
  "window_days": 30
}'
Node SDK
import { TheLeoKingApi } from "@theleoking/ai-api";

const api = new TheLeoKingApi({
  apiKey: process.env.LEOKING_API_KEY,
  baseUrl: "https://theleokingai.com/api"
});

const result = await api.mundaneHotZones(
  {
  "topic": "markets",
  "regions": ["United States", "Europe", "China", "Middle East"],
  "window_days": 30
},
  "mundane-hot-zones-subject-123-v1"
);

console.log(result.request_id);
console.log(result.usage.credits);
Python SDK
import os
from theleoking_ai_api import TheLeoKingApi

api = TheLeoKingApi(
    api_key=os.environ["LEOKING_API_KEY"],
    base_url="https://theleokingai.com/api",
)

result = api.mundane_hot_zones(
    {
        "topic": "markets",
        "regions": [
            "United States",
            "Europe",
            "China",
            "Middle East",
        ],
        "window_days": 30,
    },
    idempotency_key="mundane-hot-zones-subject-123-v1",
)

print(result["request_id"])
print(result["usage"]["credits"])
Error Behavior
HTTPCodePartner Action
400INVALID_REQUESTFix the payload shape, enum value, required field, or request body before retrying.
401AUTH_REQUIREDSend x-api-key from a trusted server environment. Do not expose keys in browser code.
401AUTH_INVALIDCheck the key prefix, rotate compromised keys, and verify the target environment.
402CREDITS_EXHAUSTEDUpgrade the plan, add credits, or switch to a lower-cost Core Compute route.
403AUTH_FORBIDDENUse a key scoped for this endpoint or upgrade to the required plan.
404NOT_FOUNDVerify the job id, environment, API key, and whether the job belongs to the same workspace.
409IDEMPOTENCY_CONFLICTReuse idempotency keys only for the same logical operation and identical request payload.
429RATE_LIMITEDBack off, retry later, reduce concurrency, or request enterprise limits.
Related Endpoints