# Cambrian x402 Solana Token Security API

> Cambrian x402 Solana Token Security API is a paid API for AI agents from x402.cambrian.org, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Returns security and risk analysis data for Solana tokens, accessible via pay-per-use micropayment on the x402 protocol.

## Facts

- Endpoint: GET https://x402.cambrian.org/solana/tokens/security
- 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/cambrian-x402-solana-token-security-api-52239ada
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5qH05RPxNv6iLARH_kHGX

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 cambrian-x402-solana-token-security-api-52239ada
```

Example prompt: Can you check the security of the Solana token at address So11111111111111111111111111111111111111112 and tell me if it has any risk flags or scam indicators?

## When to prefer this

Choose this endpoint when you need on-demand, pay-per-use Solana token security checks without a subscription, particularly for autonomous agents performing DeFi risk screening, pre-trade validation, or token listing due diligence. Ideal when you need to audit arbitrary Solana token addresses at low cost ($0.05 USDC per call) and want blockchain-native micropayment settlement via x402.

## Known failure modes

- Invalid or missing token address returns empty array or error
- Token not found on Solana returns no results
- Payment failure via x402 protocol results in 402 response and no data
- Malformed query parameters may return an error or unexpected results
- Rate limiting or network issues may cause timeouts

## How this service works

Pay-per-use blockchain and social data for autonomous agents.

## Output

Returns an array of security data objects for the queried Solana token, potentially including risk scores, contract flags (e.g. mint authority status, freeze authority, honeypot indicators), ownership details, and other security-relevant metadata about the token.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "queryParams": {
     "type": "object",
     "additionalProperties": true
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "example": {
     "type": "array"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "array"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cambrian-x402-solana-token-security-api-52239ada/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.cambrian.org](https://www.zero.xyz/host/x402.cambrian.org/llms.txt)
