# Phemex Spot USDT Market Scraper

**Use case:** 

Extract Phemex spot USDT pairs sorted by 24h volume. Get live crypto prices, turnover and market data from Phemex as structured JSON.

## Input

```json
{
  "productType": "Spot",
  "quoteCurrency": "USDT",
  "statusFilter": "Listed",
  "maxItems": 5,
  "sortBy": "volume24h"
}
```

## Output

```json
{
  "symbol": {
    "label": "Symbol",
    "format": "text"
  },
  "displaySymbol": {
    "label": "Display Symbol",
    "format": "text"
  },
  "url": {
    "label": "Url",
    "format": "link"
  },
  "type": {
    "label": "Type",
    "format": "text"
  },
  "status": {
    "label": "Status",
    "format": "text"
  },
  "base": {
    "label": "Base",
    "format": "text"
  },
  "quote": {
    "label": "Quote",
    "format": "text"
  },
  "settleCurrency": {
    "label": "Settle Currency",
    "format": "text"
  },
  "lastPrice": {
    "label": "Last Price",
    "format": "number"
  },
  "open24h": {
    "label": "Open24h",
    "format": "number"
  },
  "high24h": {
    "label": "High24h",
    "format": "number"
  },
  "low24h": {
    "label": "Low24h",
    "format": "number"
  },
  "indexPrice": {
    "label": "Index Price",
    "format": "number"
  },
  "markPrice": {
    "label": "Mark Price",
    "format": "number"
  }
}
```

## About this Actor

This example demonstrates how to use [Phemex Crypto Tickers Scraper](https://apify.com/parseforge/phemex-tickers-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/phemex-tickers-scraper) to learn more, explore other use cases, and run it yourself.