# Quick scan

The fast pre-trade safety gate. Call it before any buy or swap to screen a Solana token for structural risk — authorities, holder concentration, and LP status — and get a deterministic A–F grade.

```
POST https://api.solprobe.xyz/scan/quick      $0.02      SLA < 5s
```

## Request

```json
{ "token_address": "DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263" }
```

## Response (key fields)

| Field                      | Type           | Description                                                                                            |
| -------------------------- | -------------- | ------------------------------------------------------------------------------------------------------ |
| `structural_risk_grade`    | enum           | `A` · `B` · `C` · `D` · `F` — deterministic                                                            |
| `mint_authority_revoked`   | boolean        | Can no new supply be minted?                                                                           |
| `freeze_authority_revoked` | boolean        | Can accounts be frozen?                                                                                |
| `top_10_holder_pct`        | number \| null | Concentration in the top 10 holders                                                                    |
| `liquidity_check`          | object         | `{ rating: DEEP \| ADEQUATE \| THIN \| CRITICAL \| UNKNOWN, meaning, threshold_usd, action_guidance }` |
| `lp_status`                | enum           | `BURNED` · `UNBURNED` · `CUSTODIAL` · `NOT_APPLICABLE` · `UNKNOWN`                                     |
| `lp_model`                 | enum           | `TRADITIONAL_AMM` · `CLMM_DLMM` · `UNKNOWN`                                                            |
| `authority_exempt`         | boolean        | Token follows a known authority-exempt standard                                                        |
| `factors`                  | object\[]      | Structured signals that drove the grade                                                                |
| `summary`                  | string         | Plain-English verdict                                                                                  |

Plus the standard [response envelope](/reference/api-reference.md#response-envelope) (`schema_version`, `data_confidence`, `data_quality`, `missing_fields`, `confidence`).

{% hint style="success" %}
The grade is **reproducible** — it's computed from on-chain facts in scanner code, never generated by an LLM.
{% endhint %}

## When to use

* As a cheap gate before sizing or executing a trade.
* Any time you need a fast yes/no read on whether a token is structurally sound.

For market momentum, use [Market intel](/reference/api-reference/market-intel.md); for full due diligence, use [Deep dive](/reference/api-reference/deep-dive.md).


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.solprobe.xyz/reference/api-reference/quick-scan.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
