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

# Wash Trading

> Learn how wash trading inflates crypto token volume using coordinated wallets, why it signals manipulation, and how Webacy detects wash trade patterns.

## Overview

**Wash trading** is a form of market manipulation where an entity simultaneously buys and sells the same asset to create artificial trading volume. This deceptive practice makes tokens appear more liquid and actively traded than they actually are.

<Warning>
  Wash trading is illegal in regulated markets and a major red flag in crypto. Projects engaging in wash trading often collapse once the artificial volume stops.
</Warning>

## How It Works

1. **Setup**: Trader controls multiple wallets
2. **Execution**: Buys token from one wallet, sells from another
3. **Appearance**: Creates fake volume and price movements
4. **Deception**: Attracts legitimate traders who see "activity"

## Detection Indicators

The Webacy API identifies wash trading through pattern analysis:

| Tag                 | Severity | Description                                  |
| ------------------- | -------- | -------------------------------------------- |
| `wash_trading`      | High     | Address has engaged in wash trading patterns |
| `automated_trading` | Medium   | Bot-like trading behavior detected           |

## Common Patterns

### Volume Inflation

* Sudden spikes in volume with no corresponding news
* Volume/market cap ratios far above industry norms
* Trading activity concentrated among few wallets

### Price Manipulation

* Prices held artificially stable despite low real liquidity
* Coordinated buy/sell walls
* Circular transaction patterns

## Why It Matters

* **Fake liquidity**: Real traders may not be able to exit positions
* **Price discovery failure**: True market value is obscured
* **Pump and dump setup**: Often precedes major sell-offs
* **Regulatory risk**: Increasingly targeted by enforcement

## API Example

```bash theme={null}
curl -X GET "https://api.webacy.com/addresses/0x123...?chain=eth" \
  -H "x-api-key: YOUR_API_KEY"
```

Response indicating wash trading:

```json theme={null}
{
  "overallRisk": 78.5,
  "issues": [
    {
      "tag": "wash_trading",
      "severity": "high",
      "description": "Address has engaged in wash trading"
    }
  ]
}
```

## Protection Strategies

1. **Check holder analysis** - Use the [Holder Analysis](/api-reference/holder-analysis/get-detailed-early-holder-analysis-for-a-token) endpoint to identify concentration
2. **Verify volume sources** - Cross-reference volume across multiple DEXs
3. **Look for organic growth** - Legitimate projects show gradual, sustainable growth
4. **Monitor transaction patterns** - Circular transactions are a red flag
