# RTK Motion Threat Intelligence

> RTK Motion Threat Intelligence is a paid API for AI agents from api.rtkmotion.io, paid per call via x402, $0.5/call, status unknown (last checked 2026-09-14).

Returns a threat level assessment, confidence score, and event distribution breakdown for a given location slug

## Facts

- Endpoint: GET https://api.rtkmotion.io/paid/threat
- Price: $0.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/rtk-motion-threat-intelligence-78c02d1c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PwOnaOPejru19LgDANqDP

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability rtk-motion-threat-intelligence-78c02d1c
```

Example prompt: What's the current threat level for culpeper-town? I need the confidence score and a breakdown of violent vs property events.

## When to prefer this

Use this endpoint when you need a cryptographically signed, location-specific threat intelligence score with event-type breakdowns — particularly when provenance and tamper-evidence (secp256k1-ECDSA signature) matter. Prefer this over generic crime APIs when you need a structured confidence score and event distribution for a named location slug.

## Known failure modes

- Unknown or unsupported location slug returns an error or empty result
- Missing required query parameter 'location' may return a 400 or default response
- Network or service unavailability returns a 5xx error
- Payment failure (x402) prevents access to the endpoint
- Invalid slug format may return no matching data

## How this service works

RTK Motion — location threat intelligence lite assessment. Confidence-scored alerts, event distribution, temporal context. For risk_underwriting or facility_security_audit. ECDSA-signed provenance.

## Output

A JSON object containing the location slug, a threat level category (e.g. 'moderate'), a numeric confidence score (0–1), an event distribution object broken down by type (violent, property, other), the intelligence domain label, and a secp256k1-ECDSA provenance signature from a specific signer address.

## Request schema (JSON Schema)

```json
{
 "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",
     "required": [],
     "properties": {
      "region": {
       "type": "string",
       "description": "Region containing the location (e.g. 'Florida', 'Virginia'). Must match the location — a mismatched pair resolves to no assessment."
      },
      "location": {
       "type": "string",
       "description": "Location slug. Must be paired with its own region: 'fbcl-longwood' is in 'Florida'; 'culpeper-town' is in 'Virginia'. Browse /catalog under ThreatIntel for valid pairs."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "tier": "lite",
  "domain": "Threat Intelligence",
  "region": "Florida",
  "sha256": "…",
  "location": "fbcl-longwood",
  "next_step": {
   "note": "No download URL exists for this route and none is missing. For flagged_items, purchase /paid/threat-full.",
   "action": "None — delivery is complete in this response",
   "required": false
  },
  "assessment": {
   "threat_level": "moderate",
   "confidence_score": 0.78,
   "event_distribution": {
    "other": 7,
    "violent": 3,
    "property": 12
   }
  },
  "provenance": {
   "algorithm": "secp256k1-ECDSA",
   "signed_by": "0x6C11F8a21f7ca922F483Ed21C3b6c2d9B305B10C"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/rtk-motion-threat-intelligence-78c02d1c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.rtkmotion.io](https://www.zero.xyz/host/api.rtkmotion.io/llms.txt)
