# BentCrypto Solana Token Risk API

> BentCrypto Solana Token Risk API is a paid API for AI agents from bentcrypto-x402-production.up.railway.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns a scored pre-trade risk assessment for a Solana token mint address to help agents evaluate token safety before trading

## Facts

- Endpoint: GET https://bentcrypto-x402-production.up.railway.app/v1/token/risk
- 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/bentcrypto-solana-token-risk-api-f16c43e7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_P6ffSWWJSzjxe0SkjC92j

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 bentcrypto-solana-token-risk-api-f16c43e7
```

Example prompt: Before I swap into this Solana token at mint address 7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU, can you pull a pre-trade risk score on it so I know if it's safe?

## When to prefer this

Use this endpoint when an AI agent needs a fast, scored risk signal for a Solana token before executing or recommending a trade. Prefer this over the sibling security endpoint (which focuses on authority and Token-2022 control analysis) when the primary concern is overall pre-trade risk scoring rather than smart contract permission structures.

## Known failure modes

- Invalid or malformed Solana mint address returns an error
- Token mint address not found on-chain returns a not-found error
- Network unavailability causes a 5xx error
- Payment not provided or insufficient results in 402 Payment Required
- Rate limiting may return 429 Too Many Requests

## How this service works

BentCrypto Solana Token Risk API - scored pre-trade token risk intelligence for AI agents

## Output

A scored risk assessment for the specified Solana token mint address, including pre-trade risk intelligence factors such as a risk score and associated risk signals that indicate how dangerous or suspicious the token may be to trade.

## 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": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "address"
     ],
     "properties": {
      "chain": {
       "enum": [
        "solana"
       ],
       "type": "string",
       "description": "Optional blockchain analysis network. Defaults to solana when omitted."
      },
      "address": {
       "type": "string",
       "description": "Token address on the selected analysis chain."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/bentcrypto-solana-token-risk-api-f16c43e7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from bentcrypto-x402-production.up.railway.app](https://www.zero.xyz/host/bentcrypto-x402-production.up.railway.app/llms.txt)
