# AgentOracle Deep Research

> AgentOracle Deep Research is a paid API for AI agents from agentoracle.co, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Performs AI-powered deep research and due diligence on crypto projects, covering tokenomics, teams, and on-chain signals

## Facts

- Endpoint: POST https://agentoracle.co/deep-research
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 1
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentoracle-co-ff5e4e50
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_frffKs4MFt1uNQ6SKFRkT

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 agentoracle-co-ff5e4e50 -d '<json body>'
```

Example prompt: Do a deep research report on the Arbitrum project — cover their tokenomics, team credibility, on-chain activity signals, and overall investment risk.

## When to prefer this

Choose this endpoint when an agent needs comprehensive, AI-synthesized due diligence on a specific crypto project including tokenomics, team vetting, and on-chain data — especially when the query requires going beyond training cutoff data with fresh citations. Prefer this over generic search when structured crypto-specific analysis with confidence scoring is required.

## Known failure modes

- Unknown or very obscure project returns limited or low-confidence results
- Query too vague returns generic information without actionable due diligence
- Rate limit or payment failure returns 402 or 429 error
- Malformed request body returns 400 validation error
- Temporary service unavailability returns 503

## How this service works

Pay-per-query research API for AI agents. x402 protocol on Base mainnet + SKALE (gasless). Verify before you act — JWS-signed receipts, FEVER-calibrated confidence, USDC payments.

## Output

A structured deep research report covering the queried crypto project's tokenomics breakdown, team background and credibility assessment, on-chain activity signals, citations with confidence scores, and an overall due diligence summary.

## Example request

```json
{
 "input": {
  "body": {
   "query": "What is the tokenomics, team background, and on-chain activity of the Uniswap protocol?"
  },
  "type": "http",
  "method": "POST",
  "bodyType": "json"
 }
}
```

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "enum": [
      "POST"
     ]
    },
    "bodyType": {
     "type": "string",
     "enum": [
      "json",
      "form-data",
      "text"
     ]
    },
    "body": {
     "properties": {
      "query": {
       "type": "string",
       "maxLength": 4000,
       "description": "Research question for deep analysis"
      }
     },
     "required": [
      "query"
     ]
    }
   },
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "summary": {
       "type": "string"
      },
      "key_facts": {
       "type": "array",
       "items": {
        "type": "string"
       }
      },
      "sources": {
       "type": "array",
       "items": {
        "type": "object"
       }
      },
      "confidence_score": {
       "type": "number"
      },
      "confidence_level": {
       "type": "string"
      },
      "freshness": {
       "type": "string"
      }
     },
     "required": [
      "summary",
      "key_facts",
      "sources",
      "confidence_score"
     ]
    }
   },
   "required": [
    "type"
   ]
  }
 },
 "required": [
  "input"
 ]
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "sources": [
   {
    "url": "https://defillama.com",
    "title": "DefiLlama"
   }
  ],
  "summary": "A comprehensive analysis of DeFi yield strategies on Base...",
  "freshness": "real-time",
  "key_facts": [
   "Top protocol: Aave with $12B TVL",
   "Average yield: 4.2% APY"
  ],
  "confidence_level": "high",
  "confidence_score": 0.91
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentoracle-co-ff5e4e50/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentoracle.co](https://www.zero.xyz/host/agentoracle.co/llms.txt)
