> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mobula.io/llms.txt
> Use this file to discover all available pages before exploring further.

# PotentialScamReason

> Reasons a token may be flagged as a potential scam.

### TypeScript shape

```ts theme={null}
type PotentialScamReason =
  | 'MinimumLiquidity'
  | 'LiquidityRugPull'
  | 'SuspiciousWalletActivity'
  | 'AbnormalBuyerRatio';
```

<ResponseField name="LOW_LIQUIDITY" type="enum">Pool liquidity is below the minimum safety threshold.</ResponseField>
<ResponseField name="LIQUIDITY_REMOVED" type="enum">A large share of pool liquidity has been removed.</ResponseField>
<ResponseField name="SUSPICIOUS_HOLDERS" type="enum">Holder or trader activity matches known scam patterns (e.g. snipers, insiders, bundlers).</ResponseField>
<ResponseField name="ABNORMAL_BUY_SELL_RATIO" type="enum">Buy/sell ratio is statistically abnormal versus comparable tokens.</ResponseField>
