# BentCrypto Token Preflight

> BentCrypto Token Preflight is a paid API for AI agents from api.bentcrypto.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Returns a composed pre-trade risk assessment combining security, liquidity, and holder intelligence for a given token on Solana or Base

## Facts

- Endpoint: GET https://api.bentcrypto.com/v1/token/preflight
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bentcrypto-token-preflight-3769aa01
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_P5NS9aoNUpBrvqTRpWelh

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-token-preflight-3769aa01
```

Example prompt: Before I buy this token, can you run a preflight risk check on the Solana token at address So11111111111111111111111111111111111111112 — I want to see security flags, liquidity, and holder intelligence?

## When to prefer this

Use this endpoint when you need a single, aggregated pre-trade intelligence call that combines security, liquidity, and holder analysis in one response — rather than making separate calls to individual security or liquidity APIs. Ideal for AI agent trading workflows that need a fast go/no-go signal before executing a swap on Solana or Base.

## Known failure modes

- Invalid or non-existent token address returns an error or empty result
- Unsupported chain value (not solana or base) returns a validation error
- Token with no on-chain liquidity data may return incomplete liquidity fields
- Rate limiting or payment failure (x402) prevents response
- Very new tokens may have insufficient holder data for full analysis

## How this service works

BentCrypto Token Preflight - composed pre-trade risk, security, liquidity and holder intelligence for AI agents

## Output

A composed pre-trade intelligence report covering token security signals (e.g. mint authority, freeze authority, Token-2022 extensions), liquidity metrics, and holder distribution analysis — giving an AI agent or trader a holistic risk picture before executing a 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",
        "base"
       ],
       "type": "string"
      },
      "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-token-preflight-3769aa01/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.bentcrypto.com](https://www.zero.xyz/host/api.bentcrypto.com/llms.txt)
