# DYOE Token Intelligence — Price + Scam/Rug-Risk Check

> DYOE Token Intelligence — Price + Scam/Rug-Risk Check is a paid API for AI agents from agents.dyoeway.org, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Returns live price and market data for a cryptocurrency token combined with a trust/scam-risk assessment of the project behind it, including domain legitimacy signals.

## Facts

- Endpoint: GET https://agents.dyoeway.org/token
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/dyoe-token-intelligence-price-scam-rug-risk-check-ea4eb737
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ItvJgom-gNKrf0gvhmyhN

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 dyoe-token-intelligence-price-scam-rug-risk-check-ea4eb737
```

Example prompt: Can you pull the price and scam-risk check on PEPE — I want to know the current market data AND whether the project behind it looks legit or like a potential rug pull before I do anything with it.

## When to prefer this

Use this endpoint when you need both market data AND a fraud/legitimacy check in a single call — particularly before an agent executes a trade, makes a payment in a token, or recommends a crypto asset to a user. Prefer this over pure price feeds when trust verification is equally important as the price itself.

## Known failure modes

- Unknown or unsupported token symbol returns an error or empty result
- Very new or obscure tokens may have no market data available
- Domain trust signals may be unavailable if the project has no detectable web presence
- Payment not received or x402 auth failure results in 402 response
- Rate limiting if the same symbol is queried too frequently

## How this service works

TRUST-VETTED token intelligence — price + market data PLUS a scam/rug-risk read on the project behind the coin (legit site? brand-new domain? red flags?). Only DYOE combines market data + trust. Input: ?symbol=

## Output

Returns the token's current price and market data alongside a trust/legitimacy verdict for the project: whether the website is real, how old the domain is, any red flags detected, and a scam or rug-pull risk rating.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "symbol": {
       "type": "string",
       "description": "Token symbol, e.g. btc"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/dyoe-token-intelligence-price-scam-rug-risk-check-ea4eb737/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agents.dyoeway.org](https://www.zero.xyz/host/agents.dyoeway.org/llms.txt)
