# KuCoin Crypto Tickers Scraper (`parseforge/kucoin-tickers-scraper`) Actor

Scrape live ticker data from KuCoin public API including price, volume, makerCoefficient, takerCoefficient, 24h percent change, and order-book best bid/ask for 1500+ pairs. No API key required.

- **URL**: https://apify.com/parseforge/kucoin-tickers-scraper.md
- **Developed by:** [ParseForge](https://apify.com/parseforge) (community)
- **Categories:** Business, Developer tools, Automation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

from $22.80 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

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

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
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.md):

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

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.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/platform/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

![ParseForge Banner](https://github.com/ParseForge/apify-assets/raw/main/banner.jpg)

## 🪙 KuCoin Crypto Tickers Scraper

> 🚀 **Export every KuCoin spot ticker in seconds.** Filter **1,000+ trading pairs** by quote asset, sort by 24h volume, change, or last price, and get clean price, bid/ask, fee, and coefficient fields. No API key, no registration, no rate-limit headaches.

> 🕒 **Last updated:** 2026-05-13 · **📊 23 fields** per record · **🪙 1,000+ pairs** · **💱 9 quote currencies**

The **KuCoin Crypto Tickers Scraper** queries the official KuCoin public `allTickers` endpoint and returns **23 fields per record**, including last price, best bid and ask, 24h high and low, base and quote volume, taker and maker fee rates, takerCoefficient and makerCoefficient, computed spread in basis points, and ISO timestamps. The actor splits the dashed symbol into baseAsset and quoteAsset so every record is ready for joins without extra parsing.

KuCoin lists pairs against USDT, USDC, BTC, ETH, KCS, DAI, TUSD, EUR, and TRX, and this Actor covers the full spot catalog in one request. Results come back ready to download as CSV, Excel, JSON, or XML. Filtering and sorting run server-side, so you skip the rate-limit dance entirely.

| 🎯 Target Audience | 💡 Primary Use Cases |
|---|---|
| Quant teams, crypto analysts, arbitrage bots, fee-aware market makers, portfolio dashboards, fintech apps, researchers, journalists | Price snapshots, volume leaderboards, fee-tier monitoring, arbitrage detection, listing trackers, training datasets, KCS pair coverage |

---

### 📋 What the KuCoin Tickers Scraper does

Three filtering and sorting workflows in a single run:

- 🌐 **Full-catalog export.** Every live spot pair on KuCoin in one dataset.
- 💱 **Quote-asset filter.** Restrict to USDT, USDC, BTC, ETH, KCS, DAI, TUSD, EUR, or TRX markets.
- 📊 **Multi-field sorting.** Order by quote volume, base volume, 24h percent change, last price, or symbol.

Each record includes symbol, baseAsset, quoteAsset, lastPrice, averagePrice, priceChange, priceChangePercent, 24h high and low, bidPrice and askPrice, computed spreadAbs and spreadBps, volume24h, quoteVolume24h, takerFeeRate, makerFeeRate, takerCoefficient, makerCoefficient, tickerTime, and a scrapedAt timestamp.

> 💡 **Why it matters:** KuCoin is one of the few major exchanges that exposes per-pair taker and maker fee rates through the public ticker endpoint. Capturing them with each record is essential for any fee-aware trading strategy or accurate net-PnL backtest.

---

### 🎬 Full Demo

_🚧 Coming soon: a 3-minute walkthrough showing how to go from sign-up to a downloaded KuCoin ticker dataset._

---

### ⚙️ Input

<table>
<thead>
<tr><th>Input</th><th>Type</th><th>Default</th><th>Behavior</th></tr>
</thead>
<tbody>
<tr><td><code>quoteAsset</code></td><td>string (enum)</td><td><code>""</code></td><td>One of <code>USDT</code>, <code>USDC</code>, <code>BTC</code>, <code>ETH</code>, <code>KCS</code>, <code>DAI</code>, <code>TUSD</code>, <code>EUR</code>, <code>TRX</code>. Empty = all pairs.</td></tr>
<tr><td><code>maxItems</code></td><td>integer</td><td><code>10</code></td><td>Records to return. Free plan caps at 10, paid plan at 1,000,000.</td></tr>
<tr><td><code>sortBy</code></td><td>string (enum)</td><td><code>"quoteVolume"</code></td><td>One of <code>quoteVolume</code>, <code>volume</code>, <code>changePercent</code>, <code>lastPrice</code>, <code>symbol</code>.</td></tr>
</tbody>
</table>

**Example: top 50 USDT pairs by 24h quote volume.**

```json
{
    "maxItems": 50,
    "quoteAsset": "USDT",
    "sortBy": "quoteVolume"
}
````

**Example: every KCS-quoted pair sorted by 24h percent change.**

```json
{
    "maxItems": 200,
    "quoteAsset": "KCS",
    "sortBy": "changePercent"
}
```

> ⚠️ **Good to Know:** KuCoin reports fee rates per pair, which lets you compute net PnL exactly. Pairs with promotional zero-fee periods will show `takerFeeRate` or `makerFeeRate` of `0` for the duration of the promotion.

***

### 📊 Output

Each ticker record contains **23 fields**. Download the dataset as CSV, Excel, JSON, or XML.

#### 🧾 Schema

| Field | Type | Example |
|---|---|---|
| 🆔 `symbol` | string | `"BTC-USDT"` |
| 🔗 `url` | string | `"https://www.kucoin.com/trade/BTC-USDT"` |
| 🪙 `baseAsset` | string | null | `"BTC"` |
| 💱 `quoteAsset` | string | null | `"USDT"` |
| 💰 `lastPrice` | number | null | `79111.8` |
| 📐 `averagePrice` | number | null | `80292.67347734` |
| 📈 `priceChange` | number | null | `-1176` |
| 📊 `priceChangePercent` | number | null | `-1.46` |
| 🔺 `highPrice24h` | number | null | `81313.9` |
| 🔻 `lowPrice24h` | number | null | `78771.9` |
| 🟦 `bidPrice` | number | null | `79111.8` |
| 🟧 `askPrice` | number | null | `79111.9` |
| ↔️ `spreadAbs` | number | null | `0.1` |
| 🎯 `spreadBps` | number | null | `0.0126` |
| 📉 `volume24h` | number | null | `2111.0628860570073` |
| 💵 `quoteVolume24h` | number | null | `169293542.1792166` |
| 💸 `takerFeeRate` | number | null | `0.001` |
| 💸 `makerFeeRate` | number | null | `0.001` |
| 🧮 `takerCoefficient` | number | null | `1` |
| 🧮 `makerCoefficient` | number | null | `1` |
| 🕓 `tickerTime` | ISO 8601 | null | `"2026-05-13T08:36:42.000Z"` |
| 🕒 `scrapedAt` | ISO 8601 | `"2026-05-13T08:37:00.000Z"` |

#### 📦 Sample records

<details>
<summary><strong>🟠 Bitcoin against Tether: BTC-USDT</strong></summary>

```json
{
    "symbol": "BTC-USDT",
    "url": "https://www.kucoin.com/trade/BTC-USDT",
    "baseAsset": "BTC",
    "quoteAsset": "USDT",
    "lastPrice": 79111.8,
    "averagePrice": 80292.67347734,
    "priceChange": -1176,
    "priceChangePercent": -1.46,
    "highPrice24h": 81313.9,
    "lowPrice24h": 78771.9,
    "bidPrice": 79111.8,
    "askPrice": 79111.9,
    "spreadAbs": 0.1,
    "spreadBps": 0.0126,
    "volume24h": 2111.0628860570073,
    "quoteVolume24h": 169293542.1792166,
    "takerFeeRate": 0.001,
    "makerFeeRate": 0.001,
    "takerCoefficient": 1,
    "makerCoefficient": 1,
    "tickerTime": "2026-05-13T08:36:42.000Z",
    "scrapedAt": "2026-05-13T08:37:00.000Z"
}
```

</details>

<details>
<summary><strong>🟡 KCS-quoted pair: ETH-KCS</strong></summary>

```json
{
    "symbol": "ETH-KCS",
    "url": "https://www.kucoin.com/trade/ETH-KCS",
    "baseAsset": "ETH",
    "quoteAsset": "KCS",
    "lastPrice": 240.5,
    "averagePrice": 241.8,
    "priceChange": -1.2,
    "priceChangePercent": -0.5,
    "highPrice24h": 244.1,
    "lowPrice24h": 238.7,
    "bidPrice": 240.4,
    "askPrice": 240.7,
    "spreadAbs": 0.3,
    "spreadBps": 12.47,
    "volume24h": 312.45,
    "quoteVolume24h": 75441.2,
    "takerFeeRate": 0.001,
    "makerFeeRate": 0.001,
    "takerCoefficient": 1,
    "makerCoefficient": 1,
    "tickerTime": "2026-05-13T08:36:42.000Z",
    "scrapedAt": "2026-05-13T08:37:00.000Z"
}
```

</details>

***

### ✨ Why choose this Actor

| | Capability |
|---|---|
| 🌐 | **Full spot catalog.** 1,000+ live trading pairs across 9 quote currencies in one run. |
| 💸 | **Per-pair fee rates.** Taker and maker fees and coefficients on every record. Rare in public ticker feeds. |
| 🔖 | **Clean baseAsset and quoteAsset.** Parsed from the dashed KuCoin symbol, never a guess. |
| 📊 | **Server-side sorting.** Quote volume, base volume, change percent, last price, or symbol order applied before pagination. |
| ⚡ | **Fast.** 10 tickers in under 5 seconds, full catalog in under a minute. |
| 🎯 | **Computed spreads.** Absolute spread and basis-point spread calculated per record. |
| 🚫 | **No API key.** Works against public KuCoin endpoints. No login required. |

> 📊 Capturing the live fee rate alongside each ticker is the difference between a backtest that looks good on paper and one that survives live execution.

***

### 📈 How it compares to alternatives

| Approach | Cost | Coverage | Refresh | Filters | Setup |
|---|---|---|---|---|---|
| **⭐ KuCoin Tickers Scraper** *(this Actor)* | $5 free credit, then pay-per-use | **1,000+** pairs | **Live per run** | quote asset, sort | ⚡ 2 min |
| Direct KuCoin REST polling | Free, with rate limits | Same | Real-time | Build your own | 🐢 Hours |
| Paid market data APIs | $99+/month | Multi-exchange | Streaming | Many | ⏳ Hours |
| CSV exports from analytics sites | Free, often stale | Subset | Hourly or daily | None | 🕒 Variable |

Pick this Actor when you want quote-asset filtering, native fee fields, and zero pipeline maintenance.

***

### 🚀 How to use

1. 📝 **Sign up.** [Create a free account with $5 credit](https://console.apify.com/sign-up?fpr=vmoqkp) (takes 2 minutes).
2. 🌐 **Open the Actor.** Go to the KuCoin Crypto Tickers Scraper page on the Apify Store.
3. 🎯 **Set input.** Pick a quote asset (or leave empty for all pairs), choose a sort order, and set `maxItems`.
4. 🚀 **Run it.** Click **Start** and let the Actor collect your data.
5. 📥 **Download.** Grab your results in the **Dataset** tab as CSV, Excel, JSON, or XML.

> ⏱️ Total time from signup to downloaded dataset: **3-5 minutes.** No coding required.

***

### 💼 Business use cases

<table>
<tr>
<td width="50%" valign="top">

#### 🤖 Trading bots and arbitrage

- Cross-exchange spread monitoring against Binance, Bybit, OKX
- Triangular arbitrage scans across USDT, BTC, ETH, KCS quotes
- Fee-aware net-PnL routing
- Latency-tolerant pricing for swing strategies

</td>
<td width="50%" valign="top">

#### 📊 Analytics and dashboards

- Volume leaderboards and top-mover panels
- Spread monitoring with basis-point precision
- Historical snapshots stitched from scheduled runs
- Treasury and portfolio rebalancing inputs

</td>
</tr>
<tr>
<td width="50%" valign="top">

#### 🪙 Listings and trackers

- New-listing alerts when symbols appear on KuCoin
- Native KCS-quoted pair coverage
- Long-tail altcoin discovery via 24h volume sort
- Delisting detection by diffing successive runs

</td>
<td width="50%" valign="top">

#### 🧪 Research and journalism

- Quant research datasets for backtests
- Stories on fee structures and promotional zero-fee pairs
- Stablecoin depeg or spread anomalies
- Educational material with real exchange data

</td>
</tr>
</table>

***

### 🔌 Automating KuCoin Tickers Scraper

Control the scraper programmatically for scheduled runs and pipeline integrations:

- 🟢 **Node.js.** Install the `apify-client` NPM package.
- 🐍 **Python.** Use the `apify-client` PyPI package.
- 📚 See the [Apify API documentation](https://docs.apify.com/api/v2) for full details.

The [Apify Schedules feature](https://docs.apify.com/platform/schedules) lets you trigger this Actor on any cron interval. Every minute, hourly, or daily refreshes keep downstream price tables in sync automatically.

***

### 🌟 Beyond business use cases

Live ticker data powers more than trading desks. The same structured records support research, education, civic projects, and personal initiatives.

<table>
<tr>
<td width="50%">

#### 🎓 Research and academia

- Microstructure papers on bid/ask spread dynamics
- Fee-rate impact studies across quote markets
- Reproducible datasets with versioned scheduled pulls
- Coursework on time-series and volatility modeling

</td>
<td width="50%">

#### 🎨 Personal and creative

- Hobby trading dashboards and portfolio trackers
- Side projects that ping Telegram or Discord on price moves
- Visualizations and infographics for crypto blogs
- Toy datasets for learning pandas, DuckDB, or Polars

</td>
</tr>
<tr>
<td width="50%">

#### 🤝 Non-profit and civic

- Transparency reports on exchange fees and liquidity
- Investigative journalism on volume reporting
- Educational materials for financial-literacy programs
- Open datasets for academic crypto research consortia

</td>
<td width="50%">

#### 🧪 Experimentation

- Train classifiers on price-action regimes
- Prototype agent pipelines that watch spreads
- Backtest mean-reversion ideas with real ticks
- Test alert systems against historical snapshots

</td>
</tr>
</table>

***

### 🤖 Ask an AI assistant about this scraper

Open a ready-to-send prompt about this ParseForge actor in the AI of your choice:

- 💬 [**ChatGPT**](https://chat.openai.com/?q=How%20do%20I%20use%20the%20KuCoin%20Crypto%20Tickers%20Scraper%20by%20ParseForge%20on%20Apify%3F%20Show%20me%20input%20examples%2C%20output%20fields%2C%20common%20use%20cases%2C%20and%20how%20to%20integrate%20it%20into%20a%20workflow.)
- 🧠 [**Claude**](https://claude.ai/new?q=How%20do%20I%20use%20the%20KuCoin%20Crypto%20Tickers%20Scraper%20by%20ParseForge%20on%20Apify%3F%20Show%20me%20input%20examples%2C%20output%20fields%2C%20common%20use%20cases%2C%20and%20how%20to%20integrate%20it%20into%20a%20workflow.)
- 🔍 [**Perplexity**](https://perplexity.ai/search?q=How%20do%20I%20use%20the%20KuCoin%20Crypto%20Tickers%20Scraper%20by%20ParseForge%20on%20Apify%3F%20Show%20me%20input%20examples%2C%20output%20fields%2C%20common%20use%20cases%2C%20and%20how%20to%20integrate%20it%20into%20a%20workflow.)
- 🅒 [**Copilot**](https://copilot.microsoft.com/?q=How%20do%20I%20use%20the%20KuCoin%20Crypto%20Tickers%20Scraper%20by%20ParseForge%20on%20Apify%3F%20Show%20me%20input%20examples%2C%20output%20fields%2C%20common%20use%20cases%2C%20and%20how%20to%20integrate%20it%20into%20a%20workflow.)

***

### ❓ Frequently Asked Questions

#### 🧩 How does it work?

The Actor calls the public KuCoin `market/allTickers` endpoint, applies your quote-asset and sort filters in memory, and emits one clean record per pair. No browser automation, no captchas, no credentials.

#### 📏 How fresh is the data?

Every run hits the live `allTickers` endpoint, so the dataset reflects the spot market at the moment of the run. The `tickerTime` field shows the exact server time of the snapshot.

#### 💸 Why include fee rates?

KuCoin is one of the few major exchanges that exposes per-pair taker and maker fee rates through the public ticker endpoint. Capturing them on every record is essential for accurate net-PnL backtests and any fee-aware routing logic.

#### 🔁 How often is the dataset refreshed?

The Actor refreshes on every run. Schedule it on any cron interval, from every minute to daily.

#### 🪙 Does it include new listings?

Yes. The `allTickers` endpoint returns every active pair, so freshly listed symbols appear automatically.

#### ⏰ Can I schedule regular runs?

Yes. Use Apify Schedules to run this Actor on any cron interval and keep a downstream database in sync.

#### ⚖️ Is this data legal to use?

KuCoin publishes ticker data on public endpoints intended for application access. Review the venue terms for your specific use case, but raw ticker snapshots are generally considered public market data.

#### 💼 Can I use this data commercially?

Yes. Raw market data is widely used in commercial products. You are responsible for complying with venue terms and any downstream regulatory requirements.

#### 💳 Do I need a paid Apify plan to use this Actor?

No. The free Apify plan is enough for testing and small runs (10 records per run). A paid plan lifts the limit and gives you access to scheduling, higher concurrency, and larger datasets.

#### 🔁 What happens if a run fails or gets interrupted?

Apify automatically retries transient errors. If a run still fails, you can inspect the log in the Runs tab, fix the input, and re-run. Partial datasets from failed runs are preserved.

#### 🆘 What if I need help?

Our support team is here to help. Contact us through the Apify platform or use the Tally form linked below.

***

### 🔌 Integrate with any app

KuCoin Tickers Scraper connects to any cloud service via [Apify integrations](https://apify.com/integrations):

- [**Make**](https://docs.apify.com/platform/integrations/make) - Automate multi-step workflows
- [**Zapier**](https://docs.apify.com/platform/integrations/zapier) - Connect with 5,000+ apps
- [**Slack**](https://docs.apify.com/platform/integrations/slack) - Get price alerts in your channels
- [**Airbyte**](https://docs.apify.com/platform/integrations/airbyte) - Pipe ticker data into your warehouse
- [**GitHub**](https://docs.apify.com/platform/integrations/github) - Trigger runs from commits and releases
- [**Google Drive**](https://docs.apify.com/platform/integrations/drive) - Export datasets straight to Sheets

You can also use webhooks to trigger downstream actions when a run finishes. Push fresh prices into your trading backend, or alert your team in Slack.

***

### 🔗 Recommended Actors

- [**📊 Binance Crypto Prices Scraper**](https://apify.com/parseforge/binance-prices-scraper) - Spot and futures prices from the largest centralized exchange
- [**🟣 Bybit Tickers Scraper**](https://apify.com/parseforge/bybit-tickers-scraper) - Spot and derivatives tickers from Bybit
- [**🐙 Kraken Crypto Exchange Scraper**](https://apify.com/parseforge/kraken-exchange-scraper) - Spot pairs and OHLC from Kraken
- [**🦎 CoinGecko Cryptocurrency Scraper**](https://apify.com/parseforge/coingecko-scraper) - Cross-exchange aggregated prices, market cap, and ranks
- [**🐝 CoinPaprika Crypto Tickers Scraper**](https://apify.com/parseforge/coinpaprika-tickers-scraper) - Multi-exchange ticker rollups

> 💡 **Pro Tip:** browse the complete [ParseForge collection](https://apify.com/parseforge) for more exchange and market-data scrapers.

***

**🆘 Need Help?** [**Open our contact form**](https://tally.so/r/BzdKgA) to request a new scraper, propose a custom data project, or report an issue.

***

> **⚠️ Disclaimer:** this Actor is an independent tool and is not affiliated with, endorsed by, or sponsored by KuCoin or any of its affiliates. All trademarks mentioned are the property of their respective owners. Only publicly available market data is collected.

# Actor input Schema

## `quoteAsset` (type: `string`):

Filter pairs by quote asset (e.g. USDT, USDC, BTC). Leave empty for all pairs.

## `maxItems` (type: `integer`):

Free users: Limited to 10 items (preview). Paid users: Optional, max 1,000,000

## `sortBy` (type: `string`):

Sort results by this field

## Actor input object example

```json
{
  "quoteAsset": "",
  "maxItems": 10,
  "sortBy": "quoteVolume"
}
```

# Actor output Schema

## `overview` (type: `string`):

Overview of scraped data

## `fullData` (type: `string`):

Complete dataset

# 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 = {
    "quoteAsset": "",
    "maxItems": 10,
    "sortBy": "quoteVolume"
};

// Run the Actor and wait for it to finish
const run = await client.actor("parseforge/kucoin-tickers-scraper").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 = {
    "quoteAsset": "",
    "maxItems": 10,
    "sortBy": "quoteVolume",
}

# Run the Actor and wait for it to finish
run = client.actor("parseforge/kucoin-tickers-scraper").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 '{
  "quoteAsset": "",
  "maxItems": 10,
  "sortBy": "quoteVolume"
}' |
apify call parseforge/kucoin-tickers-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=parseforge/kucoin-tickers-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "KuCoin Crypto Tickers Scraper",
        "description": "Scrape live ticker data from KuCoin public API including price, volume, makerCoefficient, takerCoefficient, 24h percent change, and order-book best bid/ask for 1500+ pairs. No API key required.",
        "version": "0.0",
        "x-build-id": "2UyuvXssjmNpxSvWu"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/parseforge~kucoin-tickers-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-parseforge-kucoin-tickers-scraper",
                "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/parseforge~kucoin-tickers-scraper/runs": {
            "post": {
                "operationId": "runs-sync-parseforge-kucoin-tickers-scraper",
                "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/parseforge~kucoin-tickers-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-parseforge-kucoin-tickers-scraper",
                "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": {
                    "quoteAsset": {
                        "title": "Quote Asset Filter",
                        "enum": [
                            "",
                            "USDT",
                            "USDC",
                            "BTC",
                            "ETH",
                            "KCS",
                            "DAI",
                            "TUSD",
                            "EUR",
                            "TRX"
                        ],
                        "type": "string",
                        "description": "Filter pairs by quote asset (e.g. USDT, USDC, BTC). Leave empty for all pairs.",
                        "default": ""
                    },
                    "maxItems": {
                        "title": "Max Items",
                        "minimum": 1,
                        "maximum": 1000000,
                        "type": "integer",
                        "description": "Free users: Limited to 10 items (preview). Paid users: Optional, max 1,000,000"
                    },
                    "sortBy": {
                        "title": "Sort By",
                        "enum": [
                            "quoteVolume",
                            "volume",
                            "changePercent",
                            "lastPrice",
                            "symbol"
                        ],
                        "type": "string",
                        "description": "Sort results by this field",
                        "default": "quoteVolume"
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
