# AgentServices Token Risk Assessment

> AgentServices Token Risk Assessment is a paid API for AI agents from agentservices.to, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Returns a risk score and risk factors for a given cryptocurrency token address, helping agents assess token safety before trading or investing.

## Facts

- Endpoint: GET https://agentservices.to/v1/token-risk/%7Btoken%7D
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentservices-token-risk-assessment-54049383
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RsXQObULPAAdblcSASepG

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 agentservices-token-risk-assessment-54049383
```

Example prompt: Can you check the risk score for this token at contract address 0x6B175474E89094C44Da98b954EedeAC495271d0F before I buy any? I want to know if it's a scam or honeypot.

## When to prefer this

Choose this endpoint when an agent needs a fast, paid-quality risk signal on a specific token before executing a trade, adding it to a watchlist, or recommending it to a user. Prefer this over free alternatives when accuracy and coverage of emerging/low-cap tokens matters, or when integrating into an autonomous trading agent that needs micropayment-native access via x402 on Base.

## Known failure modes

- Invalid or malformed token address returns a 400 error
- Token not found on supported chains returns a 404 or empty result
- Payment failure via x402 micropayment results in 402 response
- Newly deployed token with insufficient on-chain history may return incomplete risk data
- Rate limiting may occur for high-frequency callers without valid payment

## How this service works

Paid data APIs for AI agents. Crypto market data, DeFi yields, IP geolocation, dispute resolution, marketing intelligence. Powered by x402 micropayments on Base.

## Output

Returns a structured risk assessment for the specified token, including a numerical risk score, categorized risk factors (e.g. honeypot detection, ownership concentration, contract verification status, liquidity risks), and an overall risk level classification (e.g. low, medium, high). May include metadata about the token such as contract age, holder distribution, and trading pattern anomalies.

## 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": [
      "DELETE",
      "GET",
      "HEAD"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "token"
     ],
     "properties": {
      "token": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  },
  "routeTemplate": {
   "type": "string"
  }
 }
}
```

## More

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