# Solana Raydium High-Liquidity Pairs Export

**Use case:** 

Retrieve high-liquidity trading pairs on Solana's Raydium with minimum $100K liquidity and $500K volume. Export data in CSV or JSON format.

## Input

```json
{
  "mode": "searchPairs",
  "sources": [
    "top-boosted",
    "latest-boosted",
    "latest-profiles"
  ],
  "minBoostAmount": 0,
  "includeOrders": true,
  "enrichWithPairData": true,
  "queries": [
    "SOL USDC",
    "SOL USDT"
  ],
  "matchSymbol": "",
  "exactSymbol": "",
  "maxPairsPerQuery": 30,
  "tokenAddresses": [],
  "chainId": "",
  "maxPairsPerToken": 0,
  "pairs": [],
  "useBatch": true,
  "skipHolders": false,
  "useProxy": true,
  "proxyGroups": [
    "RESIDENTIAL"
  ],
  "onlyChains": [
    "solana"
  ],
  "onlyDexes": [
    "raydium"
  ],
  "minLiquidityUsd": 100000,
  "minVolume24hUsd": 500000,
  "maxConcurrency": 6
}
```

## Output

```json
{
  "source": {
    "label": "Source",
    "format": "string"
  },
  "chainId": {
    "label": "Chain",
    "format": "string"
  },
  "baseTokenSymbol": {
    "label": "Symbol",
    "format": "string"
  },
  "boostTotalAmount": {
    "label": "Boost spend",
    "format": "number"
  },
  "priceUsd": {
    "label": "Price USD",
    "format": "number"
  },
  "liquidityUsd": {
    "label": "Liquidity USD",
    "format": "number"
  },
  "volumeH24": {
    "label": "Volume 24h",
    "format": "number"
  },
  "priceChangeH24": {
    "label": "24h change %",
    "format": "number"
  },
  "marketCap": {
    "label": "Market cap",
    "format": "number"
  },
  "url": {
    "label": "URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [DexScreener Scraper - Boosted & Trending Tokens API](https://apify.com/logiover/dexscreener-boosted-tokens-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/logiover/dexscreener-boosted-tokens-scraper) to learn more, explore other use cases, and run it yourself.