# BentCrypto Solana Token Security

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

Performs pre-trade security analysis of Solana tokens, checking authority settings, Token-2022 extensions, and control risks before an agent executes a trade.

## Facts

- Endpoint: POST https://api.bentcrypto.com/v1/token/security
- 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-security-6d95dec1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DECNMmgi9YTJ-YOpHZIYL

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-security-6d95dec1 -d '<json body>'
```

Example prompt: Before I swap into this Solana token at mint address So11111111111111111111111111111111111111112, run a pre-trade security check on it — I want to know if it has risky authority settings, any dangerous Token-2022 extensions, or freeze/mint control issues.

## When to prefer this

Choose this endpoint when you need Solana-specific pre-trade token security analysis, particularly for Token-2022 program tokens with advanced extensions. Use it over generic risk endpoints when you specifically need authority analysis (mint/freeze authority), Token-2022 extension inspection, or Solana-native control risk signals. Prefer this over the sibling BentCrypto Token Risk endpoint when targeting Solana exclusively rather than Base ERC-20 tokens.

## Known failure modes

- Invalid or malformed Solana mint address — returns validation error
- Token not found on-chain — returns not found error
- Network timeout reaching Solana RPC — returns service unavailable
- Token has no on-chain metadata — partial results returned
- Payment not included or insufficient — x402 payment required error

## How this service works

BentCrypto Solana Token Security - pre-trade authority, Token-2022, and token-control analysis for autonomous agents.

## Output

Returns a structured security report for the Solana token including: authority risk flags (mint authority, freeze authority), Token-2022 extension analysis (transfer hooks, permanent delegate, interest-bearing, etc.), an overall token-control risk assessment, and actionable signals indicating whether the token is safe 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": "Token Security currently supports Solana only."
      },
      "address": {
       "type": "string",
       "description": "Solana token mint address."
      }
     }
    }
   },
   "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-security-6d95dec1/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)
