# Lone Star Oracle Token Due Diligence Report

> Lone Star Oracle Token Due Diligence Report is a paid API for AI agents from token.lonestaroracle.xyz, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-14).

Generates a risk report for an ERC-20 token including risk score, honeypot detection, liquidity analysis, and holder concentration data

## Facts

- Endpoint: GET https://token.lonestaroracle.xyz/report
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/token-lonestaroracle-xyz-ffb79ff0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tZb0S8lRDusnX7cUjLvBv

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 token-lonestaroracle-xyz-ffb79ff0
```

Example prompt: Can you run a full due diligence check on the ERC-20 token at address 0xdAC17F958D2ee523a2206206994597C13D831ec7 — I want to know the risk score, whether it's a honeypot, the liquidity depth, and how concentrated the top holders are before I consider buying?

## When to prefer this

Use this endpoint when you need rapid, on-demand token security screening before executing a trade or investment — especially for unfamiliar ERC-20 tokens where honeypot risk, rug pull mechanics, or whale concentration are concerns. Prefer this over generic blockchain explorers when you need a single consolidated risk score rather than raw on-chain data.

## Known failure modes

- Invalid or malformed token contract address returns error
- Token not found on specified chain returns 404 or empty result
- Unsupported blockchain network returns error
- Contract too new or illiquid for meaningful data may return partial report
- Rate limiting or payment failure returns 402 Payment Required

## How this service works

ERC-20 token due diligence — risk score, GoPlus security scan, honeypot detection, liquidity, holder concentration, AI analyst verdict

## Output

A structured due diligence report for the specified ERC-20 token including: a numerical risk score, honeypot detection verdict (true/false with explanation), current liquidity figures, and holder concentration breakdown showing how much of the supply is held by the top wallets

## Example request

```json
{
 "chain": "eth",
 "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7"
}
```

## Request schema (JSON Schema)

```json
{
 "name": "LoneStarOracle — TokenScope",
 "tags": [
  "crypto",
  "defi",
  "token",
  "risk",
  "due-diligence"
 ],
 "type": "object",
 "version": "2.0.0",
 "category": "blockchain",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "chain": {
       "type": "string",
       "title": "Chain",
       "default": "eth"
      },
      "token": {
       "type": "string",
       "title": "Token"
      },
      "wallet": {
       "type": "string",
       "title": "Wallet"
      },
      "address": {
       "type": "string",
       "title": "Address"
      },
      "contract": {
       "type": "string",
       "title": "Contract"
      }
     }
    }
   }
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "name": "USD Coin",
     "symbol": "USDC",
     "verified": true,
     "risk_flags": [],
     "risk_score": 2,
     "is_honeypot": false,
     "liquidity_usd": 98000000,
     "token_age_days": 2100,
     "ownership_renounced": true,
     "top10_concentration_pct": 45.2
    }
   }
  }
 },
 "description": "On-chain due diligence for ERC-20 tokens. Returns risk score, GoPlus security flags (mintable, hidden owner, pausable), honeypot detection, liquidity, holder concentration, ownership, and a 3-sentence AI analyst verdict from Claude Haiku."
}
```

## More

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