# RTK Motion Threat Intelligence Full Assessment

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

Returns a full location threat intelligence assessment including corroborated source events, entities, temporal context, asset hits, corroboration scoring, and ECDSA-signed provenance for a specified location.

## Facts

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

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-full-assessment-0538612c
```

Example prompt: Pull the full threat intelligence assessment for Longwood, Florida — I need the corroborated source events, flagged items with entity and temporal context, asset hits, and corroboration scores.

## When to prefer this

Choose this endpoint over the lite tier when you need corroborated multi-source event details, entity attribution, temporal analysis, asset hit mapping, or corroboration scoring — i.e., when a confidence-scored summary is insufficient and you need the full intelligence picture with provenance. Prefer this for compliance packages, security briefings, or any workflow requiring signed, auditable threat data.

## Known failure modes

- Mismatched location/region pair (e.g. Longwood slug with Virginia region) resolves to no assessment — returns empty or null result
- Unknown or unsupported location slug returns no data; valid pairs must be checked via /catalog under ThreatIntel
- Expired signed URL (15-minute TTL) causes access failure on cached or delayed retrieval
- Payment failure or x402 rejection blocks the response entirely
- Missing or malformed query params default to fbcl-longwood/Florida, which may return irrelevant data if unintentional

## How this service works

RTK Motion — location threat intelligence FULL assessment. Everything in the lite tier PLUS flagged_items (corroborated source events with entities, temporal context, asset hits, corroboration scoring). For security_operations or insurance_risk_modeling. Default location fbcl-longwood (?location=, ?region=). ECDSA-signed provenance + 15-min signed download URL.

## Output

A comprehensive threat intelligence report containing flagged_items (corroborated source events with identified entities, temporal context, asset hits, and corroboration scoring), plus ECDSA-signed provenance metadata and a 15-minute signed URL for secure retrieval. This is a superset of the lite tier, adding corroborated multi-source event details and scoring.

## 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. Default 'Florida'. A mismatched pair resolves to no assessment."
      },
      "location": {
       "type": "string",
       "description": "Location slug, paired with its region: 'fbcl-longwood'/'Florida', 'culpeper-town'/'Virginia'. Valid pairs in /catalog under ThreatIntel."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "tier": "full",
  "domain": "Threat Intelligence",
  "region": "Florida",
  "sha256": "…",
  "location": "fbcl-longwood",
  "next_step": {
   "note": "Full assessment incl. flagged_items is inline in `assessment`; download_url is a convenience copy.",
   "action": "Optional: GET download_url for the canonical assessment file",
   "required": false,
   "expires_in_seconds": 900
  },
  "assessment": {
   "threat_level": "moderate",
   "flagged_items": []
  },
  "provenance": {
   "algorithm": "secp256k1-ECDSA",
   "signed_by": "0x6C11F8a21f7ca922F483Ed21C3b6c2d9B305B10C"
  },
  "download_url": "https://api.rtkmotion.io/data/…"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/rtk-motion-threat-intelligence-full-assessment-0538612c/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)
