# AiSpace Xintel - X Intelligence Reports

> AiSpace Xintel - X Intelligence Reports is a paid API for AI agents from xintel.aispace.bot, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Retrieves AI-generated intelligence dossiers on X (Twitter) accounts, including engagement analytics, narrative assessments, topic themes, and change summaries over time.

## Facts

- Endpoint: POST https://xintel.aispace.bot/api/intel/reports
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/aispace-xintel-x-intelligence-reports-faaeb6c8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_EtlJZPZh_DELhpGcibv4E

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 aispace-xintel-x-intelligence-reports-faaeb6c8 -d '<json body>'
```

Example prompt: Can you pull the latest intelligence report for @elonmusk on X — I want the full analysis including engagement analytics, narrative summary, and any changes since the last report?

## When to prefer this

Use this endpoint when you need deep, AI-synthesized intelligence on a specific X (Twitter) account — including engagement patterns, narrative themes, strategic assessment, and behavioral change tracking over time. Prefer this over generic social media APIs when you want structured dossier-style reports rather than raw tweet data, especially for crypto/alpha signal research or influencer vetting.

## Known failure modes

- Unknown or private X username returns empty report list
- Invalid date range or malformed ISO-8601 timestamps cause validation errors
- Requesting report IDs that don't exist returns empty reports array
- Missing required 'username' field returns a 4xx error
- Insufficient payment (x402) blocks access to paid select modes
- No reports yet generated for a new username returns reportCount of 0

## How this service works

AiSpace Xintel — X intelligence, Venice alpha signal, on-chain stats, and generation tools. BYOK or x402. Humans and Agents welcome.

## Output

Returns either a menu of available report metadata (id, createdAt, model, postCount, dateRange) for the given username, or full intelligence dossier objects containing: exact computed analytics (engagement, cadence, composition, topics, network), an evidence-grounded AI narrative (summary, strategic assessment, themes, voice/register, contradictions, conclusions), a change summary versus the prior snapshot, synthesis settings, and a chargedUsd field for paid responses.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "username"
 ],
 "properties": {
  "to": {
   "type": "string",
   "description": "Inclusive upper bound on report createdAt (ISO-8601; for select=range)"
  },
  "ids": {
   "type": "string",
   "description": "Comma-separated report ids (for select=range)"
  },
  "from": {
   "type": "string",
   "description": "Inclusive lower bound on report createdAt (ISO-8601; for select=range)"
  },
  "select": {
   "enum": [
    "all",
    "range"
   ],
   "type": "string",
   "description": "Omit for the free menu. `all` = every report body. `range` = filter by ids and/or createdAt window."
  },
  "username": {
   "type": "string",
   "description": "X handle (with or without leading @)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "oneOf": [
  {
   "type": "object",
   "required": [
    "username",
    "reportCount",
    "reports"
   ],
   "properties": {
    "reports": {
     "type": "array",
     "items": {
      "type": "object",
      "required": [
       "id",
       "createdAt",
       "model",
       "postCount",
       "dateRange"
      ],
      "properties": {
       "id": {
        "type": "string"
       },
       "model": {
        "type": "string"
       },
       "createdAt": {
        "type": "string",
        "format": "date-time"
       },
       "dateRange": {
        "type": "object",
        "nullable": true,
        "properties": {
         "to": {
          "type": "string"
         },
         "from": {
          "type": "string"
         }
        }
       },
       "postCount": {
        "type": "integer"
       }
      }
     }
    },
    "username": {
     "type": "string"
    },
    "reportCount": {
     "type": "integer"
    }
   }
  },
  {
   "type": "object",
   "required": [
    "username",
    "select",
    "reportCount",
    "reports"
   ],
   "properties": {
    "select": {
     "enum": [
      "all",
      "range"
     ],
     "type": "string"
    },
    "reports": {
     "type": "array",
     "items": {
      "type": "object",
      "required": [
       "id",
       "createdAt",
       "model",
       "synthesisSettings",
       "meta",
       "analytics",
       "narrative",
       "changeSummary",
       "previousReportId"
      ],
      "properties": {
       "id": {
        "type": "string"
       },
       "meta": {
        "type": "object",
        "additionalProperties": true
       },
       "model": {
        "type": "string"
       },
       "analytics": {
        "type": "object",
        "additionalProperties": true
       },
       "createdAt": {
        "type": "string",
        "format": "date-time"
       },
       "narrative": {
        "type": "object",
        "additionalProperties": true
       },
       "changeSummary": {
        "type": "object",
        "nullable": true,
        "additionalProperties": true
       },
       "previousReportId": {
        "type": "string",
        "nullable": true
       },
       "synthesisSettings": {
        "type": "object",
        "additionalProperties": true
       }
      },
      "description": "A frozen, self-contained intel dossier on one X handle at one point in time: exact computed facts (engagement, cadence, composition, topics, derived network), an evidence-grounded AI narra
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/aispace-xintel-x-intelligence-reports-faaeb6c8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from xintel.aispace.bot](https://www.zero.xyz/host/xintel.aispace.bot/llms.txt)
