# Default crypto momentum scan

**Use case:** 

Ready-to-run example: catches crypto tokens with accelerating volume and price, new launches included, filtered by an anti-rug quality check.

## Input

```json
{
  "include_new_launches": true,
  "include_dex_momentum": true,
  "include_coingecko": true,
  "chains": [],
  "min_liquidity_usd": 10000,
  "min_volume_usd": 25000,
  "max_new_token_age_hours": 72,
  "min_volume_acceleration": 2,
  "min_price_change_1h": 3,
  "max_results": 100
}
```

## Output

```json
{
  "signal": {
    "label": "Signal"
  },
  "symbol": {
    "label": "Token"
  },
  "chain": {
    "label": "Chain"
  },
  "price_usd": {
    "label": "Price $"
  },
  "price_change_h1": {
    "label": "1h %"
  },
  "price_change_h24": {
    "label": "24h %"
  },
  "volume_h24": {
    "label": "Vol 24h"
  },
  "liquidity_usd": {
    "label": "Liquidity"
  },
  "age_hours": {
    "label": "Age (h)"
  },
  "momentum_score": {
    "label": "Momentum"
  }
}
```

## About this Actor

This example demonstrates how to use [Crypto Momentum Detector](https://apify.com/0xgollum/crypto-momentum-detector) with a specific input configuration. Visit the [Actor detail page](https://apify.com/0xgollum/crypto-momentum-detector) to learn more, explore other use cases, and run it yourself.