# Retraced Entity Intelligence

> Retraced Entity Intelligence is a paid API for AI agents from pay.retraced.site, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-13).

Researches any AI or crypto company or person by name, returning aggregated intelligence signals including sentiment trends, related entities, source-tier breakdown, and story-lifecycle stage.

## Facts

- Endpoint: GET https://pay.retraced.site/intel/entity/:name
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/retraced-entity-intelligence-124da46f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yltrzqS4e79G12ial5XVr

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 retraced-entity-intelligence-124da46f
```

Example prompt: What's the current intelligence profile on Vitalik Buterin — give me his 30-day and 90-day sentiment trend, related entities, and where he is in the story lifecycle right now.

## When to prefer this

Choose this endpoint when you need a fast, single-call intelligence snapshot on a named AI or crypto entity — covering sentiment trends, narrative stage, and related entity graph — rather than manually scraping news or querying multiple data sources. It is especially useful for due diligence, monitoring narrative shifts, or quickly orienting an agent on who or what an entity is within the AI/crypto ecosystem.

## Known failure modes

- Entity name not found or too ambiguous — returns empty or low-confidence results
- Unknown or misspelled entity name yields no matching records
- Rate limiting or payment failure returns 402 or 429 errors
- Very new entities with minimal coverage may return sparse signals
- Disambiguation failures when entity name matches multiple real-world subjects

## How this service works

retraced entity intelligence: research any AI/crypto entity in one call. Resolves company/person names across story-shaped records and returns aggregated signals with sentiment trend (30d/90d), related entities, source-tier breakdown, and story-lifecycle stage.

## Output

Returns an aggregated entity intelligence record including: 30-day and 90-day sentiment trends, related entities, a breakdown of coverage by source tier, the current story-lifecycle stage (e.g. emerging, peak, declining), and other aggregated signals — all resolved from story-shaped records across the entity's coverage history.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "name"
     ],
     "properties": {
      "name": {
       "type": "string",
       "description": "entity name, e.g. openai or vitalik"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/retraced-entity-intelligence-124da46f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from pay.retraced.site](https://www.zero.xyz/host/pay.retraced.site/llms.txt)
