# Dexscreener Realtime Monitor (`khadinakbar/dexscreener-realtime-monitor`) Actor

Monitor live Dexscreener DEX pairs — price, 5m/1h/6h/24h change, volume, liquidity, FDV, market cap across Solana, Ethereum, Base, BSC and 100+ chains. Watchlist alerts, new-pair & trending discovery. HTTP-only, MCP-ready.

- **URL**: https://apify.com/khadinakbar/dexscreener-realtime-monitor.md
- **Developed by:** [Khadin Akbar](https://apify.com/khadinakbar) (community)
- **Categories:** Developer tools, MCP servers, Automation
- **Stats:** 1 total users, 0 monthly users, 0.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $5.00 / 1,000 pair returneds

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js/docs.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python/docs.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

## Dexscreener Realtime Monitor

Monitor live **Dexscreener** DEX pairs — price, 5m/1h/6h/24h change, volume, liquidity, FDV, market cap, txns and socials — across **Solana, Ethereum, Base, BSC, TON, Arbitrum and 100+ chains**. Built for **scheduled watchlist alerts** and **new-pair / trending discovery**: feed a watchlist or a discovery feed, apply alert filters, and get back only the pairs that matter — each row tagged with which alert conditions it triggered.

HTTP-only over the public Dexscreener API. No login, no cookies, no wallet. MCP-ready for AI trading agents.

### What you get

| Field | Meaning |
|-------|---------|
| `baseTokenSymbol` / `baseTokenName` / `baseTokenAddress` | The token being monitored |
| `quoteTokenSymbol` / `quoteTokenAddress` | The pair's quote token (SOL, WETH, USDC…) |
| `chainId` / `dexId` / `pairAddress` / `url` | Chain slug, DEX, pool address, Dexscreener link |
| `priceUsd` / `priceNative` | Current price |
| `priceChangeM5` / `H1` / `H6` / `H24` | Price change % over 5m / 1h / 6h / 24h |
| `volumeM5Usd` / `H1` / `H6` / `H24Usd` | Traded volume in USD per window |
| `txnsH1Buys` / `H1Sells` / `H24Buys` / `H24Sells` | Buy/sell transaction counts |
| `liquidityUsd` / `liquidityBase` / `liquidityQuote` | Pool liquidity |
| `fdvUsd` / `marketCapUsd` | Fully-diluted valuation and market cap |
| `pairCreatedAt` / `pairAgeHours` | Pool creation time (ISO 8601) and age in hours |
| `boostAmount` / `boostTotalAmount` | Boost (promotion) amounts — discover modes, best-effort |
| `website` / `twitter` / `telegram` / `imageUrl` | Token socials + logo |
| `alertsTriggered` | Which alert filters this pair matched (e.g. `["liquidity>=$25000","priceChangeH1>=20%"]`) |
| `scrapedAt` | ISO 8601 timestamp of the run |

### When to use it

- **Watchlist monitoring** — track a fixed set of tokens or pools on a schedule and alert on price/volume/liquidity moves.
- **New-pair sniping** — surface pools created in the last N hours that already cleared a liquidity/volume floor.
- **Trending discovery** — pull the most-boosted (promoted) tokens or brand-new token profiles, enriched with live price data.
- **AI trading agents** — a clean single-call tool that returns structured JSON, ready for Claude / GPT / MCP.

Not for centralized-exchange (CEX) order books, wallet balances, or historical OHLC candles — this is live DEX pair state.

### Pricing

Pay-per-event. **$0.005 per pair returned** + a $0.00005 start fee. A 100-pair monitor run costs about **$0.50**. Pay-Per-Usage (compute + proxy) is also available for very large jobs. You only pay for pairs that pass your alert filters.

### Modes (auto-detected)

Leave `mode` on `auto` and just fill the field you care about, or set it explicitly.

| Mode | Fill | Returns |
|------|------|---------|
| **search** | `search: "WIF"` | Pairs matching a symbol / name / address |
| **tokens** | `tokenAddresses: ["0x…", "…"]` (≤30) | Every pool holding each token |
| **pairs** | `pairChainId: "solana"` + `pairAddresses: ["…"]` | Those exact pools |
| **discover** | `mode: "discover"`, `discover: "top-boosts"` | Trending / newly-boosted / new-profile tokens, enriched |

#### Alert filters (optional)

Every filter you set is a **gate** (pairs that miss it are dropped) and a **tag** (matching pairs list it in `alertsTriggered`). Leave them all empty to return every fetched pair.

- `chainIds` — restrict to chains, e.g. `["solana","base"]`
- `minLiquidityUsd` — drop illiquid pools
- `minVolumeH24Usd` — drop inactive pairs
- `minMarketCapUsd` — market-cap floor
- `maxPairAgeHours` — only pairs newer than N hours (new-pair alert)
- `minPriceChangeH1Pct` / `minPriceChangeH24Pct` — pump thresholds

### Example input

Monitor for fresh Solana pumps: pools under 24h old, ≥ $25k liquidity, up ≥ 20% in the last hour.

```json
{
  "mode": "discover",
  "discover": "latest-boosts",
  "chainIds": ["solana"],
  "minLiquidityUsd": 25000,
  "maxPairAgeHours": 24,
  "minPriceChangeH1Pct": 20,
  "maxResults": 100
}
````

Watch a specific token across every pool:

```json
{ "tokenAddresses": ["EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v"] }
```

### Run it

#### API

```bash
curl -X POST "https://api.apify.com/v2/acts/khadinakbar~dexscreener-realtime-monitor/runs?token=YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{ "mode": "search", "search": "WIF", "minLiquidityUsd": 50000 }'
```

#### JavaScript (apify-client)

```js
import { ApifyClient } from 'apify-client';
const client = new ApifyClient({ token: 'YOUR_TOKEN' });
const run = await client.actor('khadinakbar/dexscreener-realtime-monitor').call({
  mode: 'discover',
  discover: 'top-boosts',
  minLiquidityUsd: 25000,
});
const { items } = await client.dataset(run.defaultDatasetId).listItems();
console.log(items);
```

#### Scheduling (the "realtime" part)

Attach an Apify **Schedule** (e.g. every 5–15 minutes) with your watchlist input. Each run captures a fresh snapshot; wire the dataset to a webhook, Google Sheet, or your own alerting to act on `alertsTriggered`.

### MCP / AI agents

Exposed as `apify--dexscreener-realtime-monitor` in the Apify MCP server. One call in (search / tokens / pairs / discover), structured pairs out with `alertsTriggered`. Ideal as a DEX-data tool for autonomous trading and research agents.

### FAQ

**How fresh is the data?** It reflects Dexscreener's live API at run time. For continuous monitoring, run it on a short schedule.

**Which chains?** Every chain Dexscreener indexes — Solana, Ethereum, Base, BSC, Polygon, Arbitrum, TON, and 100+ more. Filter with `chainIds`.

**Why did I get fewer than `maxResults`?** The search endpoint caps at ~30 pairs per query, alert filters remove non-matching pairs, and `onePairPerToken` collapses a token's pools to its deepest-liquidity one.

**Can I catch dumps, not just pumps?** The price-change filters are minimum thresholds (best for upward moves). To watch drops, pull unfiltered and evaluate `priceChangeH1` / `priceChangeH24` downstream.

**Do I need an API key?** No. The Dexscreener API is public; the actor handles rate limits with backoff.

### Legal

This actor collects publicly available market data from Dexscreener's public API. It is not affiliated with or endorsed by Dexscreener. Use it in compliance with Dexscreener's terms and applicable law. Nothing here is financial advice — cryptocurrency trading carries significant risk. You are responsible for how you use the data.

# Actor input Schema

## `mode` (type: `string`):

How to select pairs. Use 'auto' (default) to let the actor infer the mode from which fields you fill: a 'search' keyword, 'tokenAddresses', or 'pairChainId'+'pairAddresses'. Use 'discover' to pull trending/new tokens instead of a specific target. NOT a chain selector — set chains via 'chainIds'.

## `search` (type: `string`):

Free-text query run against Dexscreener search — a token symbol, name, or address (e.g. 'WIF', 'PEPE', or a contract address). Returns matching pairs across all chains ranked by relevance. Used only in 'search' mode (or 'auto' when this is the only field set). NOT a chain name — use 'chainIds' to filter chains.

## `tokenAddresses` (type: `array`):

Token contract addresses to monitor (up to 30 per run). Every DEX pair holding each token is returned (e.g. Solana mint 'EPjFWdd5...' or ERC-20 '0x...'). Accepts an array or a comma/newline-separated string. Used in 'tokens' mode. NOT pair addresses — for a specific pool use 'pairAddresses'.

## `pairChainId` (type: `string`):

Chain slug for 'pairs' mode, lowercase (e.g. 'solana', 'ethereum', 'base', 'bsc', 'ton', 'arbitrum'). Required together with 'pairAddresses' to fetch exact pools. Ignored in other modes. NOT a display name — use the Dexscreener chain slug exactly.

## `pairAddresses` (type: `array`):

Exact DEX pair (pool) addresses to fetch, paired with 'pairChainId' (up to 30 per run). Returns just those pools, not every pool of a token. Accepts an array or a comma/newline-separated string. Used in 'pairs' mode. NOT token contract addresses — for those use 'tokenAddresses'.

## `discover` (type: `string`):

Which discovery feed to pull when mode is 'discover'. 'top-boosts' = most-boosted (promoted) tokens right now, 'latest-boosts' = newly boosted, 'new-profiles' = tokens that just added a Dexscreener profile. Each discovered token is enriched with live pair data. Ignored unless mode='discover'.

## `maxResults` (type: `integer`):

Maximum number of pairs to return and charge for. The run stops once this many pairs are pushed. Range 1–1000, default 100. Note: the search endpoint returns at most ~30 pairs per query regardless of this cap.

## `onePairPerToken` (type: `boolean`):

When true (default), collapse a token's many pools to its single deepest-liquidity pair — the usual choice for watchlist monitoring. Set false to return every pool of every token. Always ignored in 'pairs' mode (which returns the exact pools you asked for).

## `chainIds` (type: `array`):

Restrict output to these chain slugs (lowercase, e.g. 'solana', 'base'). Leave empty to allow all chains. Accepts an array or comma/newline string. A pair on any other chain is dropped.

## `minLiquidityUsd` (type: `integer`):

Drop pairs whose pooled liquidity is below this many US dollars (e.g. 25000). Higher values filter out illiquid/rug-risk pools. Leave empty to disable. Whole dollars.

## `minVolumeH24Usd` (type: `integer`):

Drop pairs whose trailing 24-hour traded volume is below this many US dollars (e.g. 50000). Filters out inactive pairs. Leave empty to disable. Whole dollars.

## `minMarketCapUsd` (type: `integer`):

Drop pairs whose token market cap is below this many US dollars (e.g. 1000000). Leave empty to disable. Whole dollars.

## `maxPairAgeHours` (type: `integer`):

Keep only pairs created within the last N hours (e.g. 24) — the core 'new pair' alert. A pair older than this is dropped. Leave empty to disable. Whole hours.

## `minPriceChangeH1Pct` (type: `integer`):

Keep only pairs whose 1-hour price change is at least this percent (e.g. 20 for pumps of +20% or more). Signed whole percent; negatives are allowed but this is a minimum, so it best captures upward moves. Leave empty to disable.

## `minPriceChangeH24Pct` (type: `integer`):

Keep only pairs whose 24-hour price change is at least this percent (e.g. 50). Signed whole percent; this is a minimum threshold. Leave empty to disable.

## Actor input object example

```json
{
  "mode": "auto",
  "search": "WIF",
  "tokenAddresses": [
    "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v"
  ],
  "pairChainId": "solana",
  "pairAddresses": [
    "7qbRF6YsyGuLUVs6Y1q64bdVrfe4ZcUUz1JRdoVNUJnm"
  ],
  "discover": "top-boosts",
  "maxResults": 100,
  "onePairPerToken": true,
  "chainIds": [
    "solana",
    "base"
  ],
  "minLiquidityUsd": 25000,
  "minVolumeH24Usd": 50000,
  "minMarketCapUsd": 1000000,
  "maxPairAgeHours": 24,
  "minPriceChangeH1Pct": 20,
  "minPriceChangeH24Pct": 50
}
```

# Actor output Schema

## `dataset` (type: `string`):

No description

## `summary` (type: `string`):

No description

## `runSummary` (type: `string`):

No description

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "search": "SOL",
    "maxResults": 100
};

// Run the Actor and wait for it to finish
const run = await client.actor("khadinakbar/dexscreener-realtime-monitor").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "search": "SOL",
    "maxResults": 100,
}

# Run the Actor and wait for it to finish
run = client.actor("khadinakbar/dexscreener-realtime-monitor").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "search": "SOL",
  "maxResults": 100
}' |
apify call khadinakbar/dexscreener-realtime-monitor --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=khadinakbar/dexscreener-realtime-monitor",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Dexscreener Realtime Monitor",
        "description": "Monitor live Dexscreener DEX pairs — price, 5m/1h/6h/24h change, volume, liquidity, FDV, market cap across Solana, Ethereum, Base, BSC and 100+ chains. Watchlist alerts, new-pair & trending discovery. HTTP-only, MCP-ready.",
        "version": "1.1",
        "x-build-id": "AePdbkKpd5RUFXOQO"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/khadinakbar~dexscreener-realtime-monitor/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-khadinakbar-dexscreener-realtime-monitor",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/khadinakbar~dexscreener-realtime-monitor/runs": {
            "post": {
                "operationId": "runs-sync-khadinakbar-dexscreener-realtime-monitor",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/khadinakbar~dexscreener-realtime-monitor/run-sync": {
            "post": {
                "operationId": "run-sync-khadinakbar-dexscreener-realtime-monitor",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "mode": {
                        "title": "Mode",
                        "enum": [
                            "auto",
                            "search",
                            "tokens",
                            "pairs",
                            "discover"
                        ],
                        "type": "string",
                        "description": "How to select pairs. Use 'auto' (default) to let the actor infer the mode from which fields you fill: a 'search' keyword, 'tokenAddresses', or 'pairChainId'+'pairAddresses'. Use 'discover' to pull trending/new tokens instead of a specific target. NOT a chain selector — set chains via 'chainIds'.",
                        "default": "auto"
                    },
                    "search": {
                        "title": "Search keyword",
                        "type": "string",
                        "description": "Free-text query run against Dexscreener search — a token symbol, name, or address (e.g. 'WIF', 'PEPE', or a contract address). Returns matching pairs across all chains ranked by relevance. Used only in 'search' mode (or 'auto' when this is the only field set). NOT a chain name — use 'chainIds' to filter chains."
                    },
                    "tokenAddresses": {
                        "title": "Token addresses",
                        "type": "array",
                        "description": "Token contract addresses to monitor (up to 30 per run). Every DEX pair holding each token is returned (e.g. Solana mint 'EPjFWdd5...' or ERC-20 '0x...'). Accepts an array or a comma/newline-separated string. Used in 'tokens' mode. NOT pair addresses — for a specific pool use 'pairAddresses'.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "pairChainId": {
                        "title": "Pair chain ID",
                        "type": "string",
                        "description": "Chain slug for 'pairs' mode, lowercase (e.g. 'solana', 'ethereum', 'base', 'bsc', 'ton', 'arbitrum'). Required together with 'pairAddresses' to fetch exact pools. Ignored in other modes. NOT a display name — use the Dexscreener chain slug exactly."
                    },
                    "pairAddresses": {
                        "title": "Pair addresses",
                        "type": "array",
                        "description": "Exact DEX pair (pool) addresses to fetch, paired with 'pairChainId' (up to 30 per run). Returns just those pools, not every pool of a token. Accepts an array or a comma/newline-separated string. Used in 'pairs' mode. NOT token contract addresses — for those use 'tokenAddresses'.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "discover": {
                        "title": "Discovery feed",
                        "enum": [
                            "top-boosts",
                            "latest-boosts",
                            "new-profiles"
                        ],
                        "type": "string",
                        "description": "Which discovery feed to pull when mode is 'discover'. 'top-boosts' = most-boosted (promoted) tokens right now, 'latest-boosts' = newly boosted, 'new-profiles' = tokens that just added a Dexscreener profile. Each discovered token is enriched with live pair data. Ignored unless mode='discover'.",
                        "default": "top-boosts"
                    },
                    "maxResults": {
                        "title": "Max results",
                        "minimum": 1,
                        "maximum": 1000,
                        "type": "integer",
                        "description": "Maximum number of pairs to return and charge for. The run stops once this many pairs are pushed. Range 1–1000, default 100. Note: the search endpoint returns at most ~30 pairs per query regardless of this cap.",
                        "default": 100
                    },
                    "onePairPerToken": {
                        "title": "One pair per token",
                        "type": "boolean",
                        "description": "When true (default), collapse a token's many pools to its single deepest-liquidity pair — the usual choice for watchlist monitoring. Set false to return every pool of every token. Always ignored in 'pairs' mode (which returns the exact pools you asked for).",
                        "default": true
                    },
                    "chainIds": {
                        "title": "Alert filter — chains",
                        "type": "array",
                        "description": "Restrict output to these chain slugs (lowercase, e.g. 'solana', 'base'). Leave empty to allow all chains. Accepts an array or comma/newline string. A pair on any other chain is dropped.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "minLiquidityUsd": {
                        "title": "Alert filter — min liquidity (USD)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Drop pairs whose pooled liquidity is below this many US dollars (e.g. 25000). Higher values filter out illiquid/rug-risk pools. Leave empty to disable. Whole dollars."
                    },
                    "minVolumeH24Usd": {
                        "title": "Alert filter — min 24h volume (USD)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Drop pairs whose trailing 24-hour traded volume is below this many US dollars (e.g. 50000). Filters out inactive pairs. Leave empty to disable. Whole dollars."
                    },
                    "minMarketCapUsd": {
                        "title": "Alert filter — min market cap (USD)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Drop pairs whose token market cap is below this many US dollars (e.g. 1000000). Leave empty to disable. Whole dollars."
                    },
                    "maxPairAgeHours": {
                        "title": "Alert filter — max pair age (hours)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Keep only pairs created within the last N hours (e.g. 24) — the core 'new pair' alert. A pair older than this is dropped. Leave empty to disable. Whole hours."
                    },
                    "minPriceChangeH1Pct": {
                        "title": "Alert filter — min 1h price change (%)",
                        "type": "integer",
                        "description": "Keep only pairs whose 1-hour price change is at least this percent (e.g. 20 for pumps of +20% or more). Signed whole percent; negatives are allowed but this is a minimum, so it best captures upward moves. Leave empty to disable."
                    },
                    "minPriceChangeH24Pct": {
                        "title": "Alert filter — min 24h price change (%)",
                        "type": "integer",
                        "description": "Keep only pairs whose 24-hour price change is at least this percent (e.g. 50). Signed whole percent; this is a minimum threshold. Leave empty to disable."
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
