Skip to main content
GET
/
api
/
feeds
/
{feed}
/
fetchTickers
import pmxt

# API key optional — enables faster catalog-backed lookups
exchange = pmxt.Polymarket(
    pmxt_api_key="YOUR_PMXT_API_KEY",
)
result = exchange.feed_fetch_tickers(symbols="value")
{
  "success": true,
  "data": {}
}

Authorizations

Authorization
string
header
required

Required when calling the hosted API directly (curl, requests, fetch). SDK users pass credentials via constructor params instead.

Path Parameters

feed
enum<string>
required

The data feed provider.

Available options:
binance,
chainlink

Query Parameters

symbols
string

Comma-separated symbols to filter (optional)

Response

200 - application/json

Successful response

success
boolean
Example:

true

data
object