# TrustDex Solana Mint Authority Quick-Check

> TrustDex Solana Mint Authority Quick-Check is a paid API for AI agents from trustdex.app, paid per call via x402, $0.005/call, status down (last checked 2026-09-15).

Returns mint authority status, freeze authority status, dangerous Token-2022 extensions, and top-holder concentration for a given Solana mint address.

## Facts

- Endpoint: GET https://trustdex.app/api/v1/x402/authority/solana/%7Bmint%7D
- Price: $0.005/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/trustdex-solana-mint-authority-quick-check-fa6d3ac0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cH2h1CYWKRVAfTYN1EviA

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 trustdex-solana-mint-authority-quick-check-fa6d3ac0
```

Example prompt: Can you do a quick authority check on the Solana token with mint address EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v — I want to know if the mint and freeze authorities are disabled and whether the top holders are too concentrated?

## When to prefer this

Use this endpoint when you need a fast, lightweight authority check specifically for a Solana token — whether mint and freeze authorities are disabled, top holder concentration, and Token-2022 extension flags — without needing the full A+–F safety grade. Prefer this over the full verdict endpoint when you only need on-chain structural risk signals and want minimal latency and cost.

## Known failure modes

- Invalid or malformed base58 mint address returns an error
- Mint address not found on Solana returns a 404 or error response
- Network/RPC issues may cause timeouts or 5xx errors
- Payment failure (x402) if USDC balance is insufficient

## How this service works

TrustDex is a non-custodial Solana DEX. Best-route swaps through Jupiter, EVM trading across 7 chains, native bridging, and live token risk grades. No KYC, no accounts, no custody.

## Output

A JSON object with an `ok` boolean, the mint address, the percentage held by the top 10 holders (`top10HoldersPct`), a boolean indicating whether mint authority is disabled (`mintAuthorityDisabled`), and a boolean indicating whether freeze authority is disabled (`freezeAuthorityDisabled`). May also include flags for dangerous Token-2022 extensions.

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "mint": "…",
  "top10HoldersPct": 21.4,
  "mintAuthorityDisabled": true,
  "freezeAuthorityDisabled": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/trustdex-solana-mint-authority-quick-check-fa6d3ac0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from trustdex.app](https://www.zero.xyz/host/trustdex.app/llms.txt)
