Developer Hub
Pyth CoreHermes

Get the set of price feeds.

Get the set of price feeds. This endpoint fetches all price feeds from the Pyth network. It can be filtered by asset type and query string.

GET
/v2/price_feeds

Query Parameters

query?string|null

Optional query parameter. If provided, the results will be filtered to all price feeds whose symbol contains the query string. Query string is case insensitive.

asset_type?string

Optional query parameter. If provided, the results will be filtered by asset type. Possible values are crypto, equity, fx, metal, rates. Filter string is case insensitive.

Value in"crypto" | "fx" | "equity" | "metal" | "rates" | "crypto_redemption_rate" | "commodities" | "crypto_index" | "crypto_nav" | "eco" | "kalshi"

Response Body

application/json

curl -X GET "https://hermes.pyth.network/v2/price_feeds?query=bitcoin&asset_type=crypto"
[
  {
    "attributes": {
      "property1": "string",
      "property2": "string"
    },
    "id": "e62df6c8b4a85fe1a67db44dc12de5db330f7ac66b72dc658afedf0f4a415b43"
  }
]