# Explore Supported Feeds

## Explore Supported Feeds

SEDA supports access to over 3.5 million production data feeds.

<details open>

<summary>Supported Categories</summary>

* **Crypto** — 1,524
* **Private Equity** — 468
* **Equities** — 14,866
* **Commodities** — 41
* **Soft Commodities** — 172
* **Rates** — 34
* **ETF** — 133
* **Forex** — 240
* **Metals** — 227
* **Crypto Index** — 4
* **Crypto Redemption** — 176
* **Crypto NAV** — 4
* **Crypto xStock** — 12
* **Economic Indicators** — 40
* **Grains** — 111
* **Energy** — 114
* **Livestock** — 46
* **Dairy** — 26
* **Other Commodities** — 14
* **Currency** — 181
* **Prediction Markets** — 96

</details>

{% hint style="info" %}
To **search**, simply click "View larger version on the bottom right for search based filtering" or expand via feed type on the left of the table.
{% endhint %}

### Browse Feeds

Browse 18,000+ highlighted data feeds below.

{% embed url="<https://airtable.com/appMflrM2ecyRdtXB/shr6rqcQSf2oywDwk>" fullWidth="false" %}

{% hint style="success" %}
If you don't find the symbol you're looking for our team can likely source this data for you in under 24hrs. Please feel free to reach out [**here**](https://discord.gg/uBrQJZ2nrB)**!**
{% endhint %}

### Premium Data Providers

<details>

<summary><strong>Pyth</strong> — Equity, ETFs, Commodities, Rates, Crypto Indices, NAV, Metals, Forex</summary>

Pure market data sourced directly from the best institutions and traders in the world.

#### Pyth Core

Explore Pyth Core Feed offering here:\
<https://insights.pyth.network/price-feeds>

#### Pyth Pro

Explore the Pyth Pro offering here:

<https://data.dourolabs.xyz/pyth-interest-form>

</details>

<details>

<summary><strong>dxFeed</strong> — Equities, Commodities, ETFs, Futures, Options Indices, FX, Crypto</summary>

dxFeed is a subsidiary of [Devexperts](https://devexperts.com/), with the primary focus of delivering financial markets information and services to buy-side and sell-side institutions of the global financial industry, specifically to traders, data analysts, quants and portfolio managers.

Since its inception, dxFeed has built one of the most comprehensive ticker plants in the world, in addition to offering the broadest range of data services currently available by a single company in its space.

Financial data is delivered from a variety of exchanges in North America, Europe and around the world.

## **API Structure and Data Specification**

All events that occur on exchanges (placed and canceled orders, trades, and so on) are received by dxFeed in individual formats and in accordance with the protocols of each exchange. Hereupon dxFeed normalizes all the data into its own records with a predefined set of fields — dxFeed internal QD-model (Quote Distribution).

Here's an example response object for both a Quote and a Trade.

```json
{
	"Quote": {
		"AAPL:USLF24": {
			"askExchangeCode": "U",
			"askPrice": 214.44,
			"askSize": 123,
			"askTime": 1753707742000,
			"bidExchangeCode": "U",
			"bidPrice": 214.2,
			"bidSize": 157,
			"bidTime": 1753707657000,
			"eventSymbol": "AAPL:USLF24",
			"eventTime": 0,
			"sequence": 0,
			"timeNanoPart": 0
		}
	},
	"status": "OK"
}
```

```json
{
	"Trade": {
		"AAPL:USLF24": {
			"change": 0,
			"dayId": 20297,
			"dayTurnover": 12405806.53,
			"dayVolume": 57773,
			"eventSymbol": "AAPL:USLF24",
			"eventTime": 0,
			"exchangeCode": "V",
			"extendedTradingHours": true,
			"price": 213.89,
			"sequence": 1071,
			"size": 100,
			"tickDirection": "ZERO_DOWN",
			"time": 1753473599903,
			"timeNanoPart": 0
		}
	},
	"status": "OK"
}
```

<https://kb.dxfeed.com/en/data-model/market-events/qd-model-of-market-events.html#trade-118167>

## Proxy Implementations

### Testnet

<table data-full-width="true"><thead><tr><th width="130">Asset Type</th><th width="376">Proxy Endpoint</th><th width="171">Symbol</th><th width="397">Notes</th></tr></thead><tbody><tr><td>US Equities and ETFs</td><td><a href="http://98.84.79.123:5384/proxy/equity/AAPL">http://98.84.79.123:5384/proxy/equity/AAPL</a></td><td>AAPL</td><td>Normal market hours</td></tr><tr><td>US Equities and ETFs</td><td><a href="http://98.84.79.123:5384/proxy/uslf_q/AAPL">http://98.84.79.123:5384/proxy/uslf_q/AAPL</a></td><td>AAPL ( quotes )</td><td>Including 8h overnight session</td></tr><tr><td>US Equities and ETFs</td><td><a href="http://98.84.79.123:5384/proxy/uslf_t/AAPL">http://98.84.79.123:5384/proxy/uslf_t/AAPL </a></td><td>AAPL ( trades )</td><td>Including 8h overnight session</td></tr><tr><td>Commodities</td><td><a href="http://98.84.79.123:5384/proxy/cfd/XAU/USD">http://98.84.79.123:5384/proxy/cfd/XAU/USD</a></td><td>Gold</td><td>Specify both asset and quote currency </td></tr><tr><td>Forex */USD pairs</td><td><a href="http://98.84.79.123:5384/proxy/fx/EUR">http://98.84.79.123:5384/proxy/fx/EUR</a></td><td>EUR/USD ( quotes )</td><td>Only quotes are available for FOREX</td></tr><tr><td>Forex reverse USD/* pairs</td><td><a href="http://98.84.79.123:5384/proxy/fx_r/JPY">http://98.84.79.123:5384/proxy/fx_r/JPY</a></td><td>USD/* ( quotes )</td><td>Only quotes are available for FOREX</td></tr></tbody></table>

### Mainnet

#### dxFeed Proxy

[ http://seda-proxy.dxfeed.com:5384/proxy/](http://seda-proxy.dxfeed.com:5384/proxy/)

#### Explore all Supported Symbols

<https://symbol-lookup.dxfeed.com/>

#### **Example Endpoint Structure**

<http://seda-proxy.dxfeed.com:5384/proxy/{type}/{symbol}>

<http://seda-proxy.dxfeed.com:5384/proxy/equity/AAPL>

For any questions, [please contact SEDA](https://discord.gg/uBrQJZ2nrB).

</details>

<details>

<summary><strong>Blocksize</strong> — Crypto, Crypto Redemption Rates, Commodities, ETFs, Equities, Forex, Metal, US Treasuries</summary>

With +5 years of experience in node operations, Blocksize is the leading oracle network data provider enabling DeFi to be bankable and accessible to all.&#x20;Our Bid/Ask and VWAP feeds are carefully engineered and backtested with outlier detection, a 24/7 monitoring systems and dedicated data support team to provide the most accurate data in real-time.

## **API Structure and Data Specification**

Blocksize supports VWAP and BIDASK endpoints.

### API Format

### Bidask

Endpoint (Testnet):

<https://seda-proxy.blocksize.dev/proxy/bidask/pair>

### Response Format

Data is returned as a JSON with the following structure:

**Successful response:**

```json
{
  "ticker": "ETHUSD",
  "agg_bid_price": "4362.597230371793",
  "agg_bid_size": "98.42767488000001",
  "agg_ask_price": "4364.092969924804",
  "agg_ask_size": "125.29260208",
  "agg_mid_price": "4363.345100148298",
  "ts": 1756156227634385
}
```

### VWAP

Endpoint (Testnet):

[https://seda-proxy.blocksize.dev/proxy/vwap/pair](https://seda-proxy.blocksize.dev/proxy/bidask/pair)

### Response Format

Data is returned as a JSON with the following structure:

**Successful response:**

```json
{
  "ticker": "BTCUSD",
  "price": 112269.91858575967,
  "size": 4.5646076099999995,
  "volume": 512468.12475063896,
  "ts": 1756147348689
}
```

## Proxy Implementations

### Testnet

<https://seda-proxy.blocksize.capital/>

### Mainnet

<https://seda-proxy.blocksize.capital/>

</details>

<details>

<summary><strong>Nobi Labs</strong> — Equity, ETFs, Commodity, Crypto, Crypto Index, Crypto NAV, Crypto Redemption Rates, Forex, Metal, Treasury Rates</summary>

Nobi Labs is a crypto asset management platform based in Indonesia that pioneers crypto adoption.

## **API Structure and Data Specification**

### API Format

Endpoint (Testnet):

[http://43.157.108.162:5384/proxy/price?code={pair}](http://43.157.108.162:5384/proxy/price?code=%7Bpair)

| Parameter | Required | Example Symbol / Pair |
| --------- | -------- | --------------------- |
| code      | Yes      | Crypto:ALL:SOL/USDT   |

### Response Format

Data is returned as a JSON with the following structure:

**Successful response:**

<pre class="language-json"><code class="lang-json"><strong>{
</strong>    "ts": 1751298466020,
    "data": {
        "code": "Crypto:ALL:SOL/USDT",
        "ask": "161.61145",
        "bid": "161.27856",
        "price": "161.445005"
    }
}
</code></pre>

**Error response:**

```json
{
   "data" : null,
   "message" : "Pair not found.",
   "status_number" : "50103",
   "ts" : 1751298466020
}
```

## Proxy Implementations

### Testnet

<http://43.157.108.162:5384/proxy/price?code=>

<table data-full-width="true"><thead><tr><th width="160">Asset Type</th><th width="328" data-type="content-ref">Proxy Endpoint</th><th width="174">Symbol</th><th width="285">Endpoint Code</th></tr></thead><tbody><tr><td>Crypto</td><td><a href="http://43.157.108.162:5384/proxy/price?code=Crypto:ALL:SOL/USDT">http://43.157.108.162:5384/proxy/price?code=Crypto:ALL:SOL/USDT</a></td><td>SOL / USDT</td><td>Crypto:ALL:SOL/USDT</td></tr><tr><td>Crypto Index</td><td><a href="http://43.157.108.162:5384/proxy/price?code=Crypto:Index:GMCI30/USDT">http://43.157.108.162:5384/proxy/price?code=Crypto:Index:GMCI30/USDT</a></td><td>GMCI30 / USDT</td><td>Crypto:Index:GMCI30/USDT</td></tr><tr><td>Crypto NAV</td><td><a href="http://43.157.108.162:5384/proxy/price?code=Crypto:NAV:ACRED/USD">http://43.157.108.162:5384/proxy/price?code=Crypto:NAV:ACRED/USD</a></td><td>ACRED / USD</td><td>Crypto:NAV:ACRED/USD</td></tr><tr><td>Crypto Redemption Rate</td><td><a href="http://43.157.108.162:5384/proxy/price?code=Crypto:RR:STETH/ETH">http://43.157.108.162:5384/proxy/price?code=Crypto:RR:STETH/ETH</a></td><td>stETH / ETH</td><td> Crypto:RR:STETH/ETH</td></tr><tr><td>Forex</td><td><a href="http://43.157.108.162:5384/proxy/price?code=Forex:ALL:USD/JPY">http://43.157.108.162:5384/proxy/price?code=Forex:ALL:USD/JPY</a></td><td>USD / JPY</td><td>Forex:ALL:USD/JPY</td></tr><tr><td>Equity</td><td><a href="http://43.157.108.162:5384/proxy/price?code=Equity:US:AAPL/USD">http://43.157.108.162:5384/proxy/price?code=Equity:US:AAPL/USD</a></td><td>AAPL / USD</td><td>Equity:US:AAPL/USD</td></tr><tr><td>ETF</td><td><a href="http://43.157.108.162:5384/proxy/price?code=ETF:US:DEFI/USD">http://43.157.108.162:5384/proxy/price?code=ETF:US:DEFI/USD</a></td><td>DEFI / USD</td><td>ETF:US:DEFI/USD</td></tr><tr><td>Commodity</td><td><a href="http://43.157.108.162:5384/proxy/price?code=Commodity:ALL:USOILSPOT/USD">http://43.157.108.162:5384/proxy/price?code=Commodity:ALL:USOILSPOT/USD</a></td><td>USOILSPOT / USD</td><td>Commodity:ALL:USOILSPOT/USD</td></tr><tr><td>Rates</td><td><a href="http://43.157.108.162:5384/proxy/price?code=Rates:US:US10Y">http://43.157.108.162:5384/proxy/price?code=Rates:US:US10Y</a></td><td>US10Y</td><td>Rates:US:US10Y</td></tr><tr><td>Metal</td><td><a href="http://43.157.108.162:5384/proxy/price?code=Metal:ALL:XAU/USD">http://43.157.108.162:5384/proxy/price?code=Metal:ALL:XAU/USD</a></td><td>XAU / USD</td><td>Metal:ALL:XAU/USD</td></tr></tbody></table>

### Mainnet

<https://seda.labs.usenobi.com/proxy/>

### Explore all Supported Symbols

<https://labs.usenobi.com/data-list>

For integration, [please contact SEDA](https://discord.gg/uBrQJZ2nrB).

</details>

<details>

<summary><strong>Caplight</strong> — Private Equity</summary>

Caplight’s market data and price discovery tools enable institutional investors, shareholders, and brokers to trade the pre-IPO asset class with more confidence.

### **API Structure and Data Specification**

Companies are identified by their pitchbookID for the testnet proxy. Price data is updated every four hours at the following daily timestamps: \
\
**UTC timestamps**&#x20;

* 00:00,&#x20;
* 04:00,&#x20;
* 08:00,&#x20;
* 12:00,&#x20;
* 16:00,
* 20:00

### API Format

Endpoint (Testnet):

<http://104.155.34.32:5384/proxy/projectId>

### Response Format

Data is returned as a JSON with the following structure:

**Successful response:**

```json
{
	"date": "2022-09-10",
	"price": 15.9,
	"estimatedValuation": 2150000000,
	"priceStandardError": 1.35,
	"generatedAtTimestamp": 1690000000,
	"daysSinceLastDataPoint": 10,
	"numberOfPoints6mo": 12,
	"orderImbalance": {
		"bidContribution": 0.53,
		"offerContribution": 0.25
	}
}
```

## Proxy Implementations

### Testnet

<table data-full-width="true"><thead><tr><th width="145">Company Name</th><th width="346" data-type="content-ref">Proxy Endpoint</th></tr></thead><tbody><tr><td>Airtable</td><td><a href="http://104.155.34.32:5384/proxy/100744-84">http://104.155.34.32:5384/proxy/100744-84</a></td></tr><tr><td>Anduril</td><td><a href="http://104.155.34.32:5384/proxy/223461-82">http://104.155.34.32:5384/proxy/223461-82</a></td></tr><tr><td>Anthropic</td><td><a href="http://104.155.34.32:5384/proxy/466959-97">http://104.155.34.32:5384/proxy/466959-97</a></td></tr><tr><td>Blockdaemon</td><td><a href="http://104.155.34.32:5384/proxy/184683-88">http://104.155.34.32:5384/proxy/184683-88</a></td></tr><tr><td>Calm</td><td><a href="http://104.155.34.32:5384/proxy/56204-65">http://104.155.34.32:5384/proxy/56204-65</a></td></tr><tr><td>CoreWeave</td><td><a href="http://104.155.34.32:5384/proxy/327267-64">http://104.155.34.32:5384/proxy/327267-64</a></td></tr><tr><td>Databricks</td><td><a href="http://104.155.34.32:5384/proxy/59199-40">http://104.155.34.32:5384/proxy/59199-40</a></td></tr><tr><td>Deel</td><td><a href="http://104.155.34.32:5384/proxy/266258-80">http://104.155.34.32:5384/proxy/266258-80</a></td></tr><tr><td>Gusto</td><td><a href="http://104.155.34.32:5384/proxy/55758-97">http://104.155.34.32:5384/proxy/55758-97</a></td></tr><tr><td>OpenAI</td><td><a href="http://104.155.34.32:5384/proxy/149504-14">http://104.155.34.32:5384/proxy/149504-14</a></td></tr><tr><td>OpenSea</td><td><a href="http://104.155.34.32:5384/proxy/226883-35">http://104.155.34.32:5384/proxy/226883-35</a></td></tr><tr><td>Pipe</td><td><a href="http://104.155.34.32:5384/proxy/432607-24">http://104.155.34.32:5384/proxy/432607-24</a></td></tr><tr><td>Reddit</td><td><a href="http://104.155.34.32:5384/proxy/53903-53">http://104.155.34.32:5384/proxy/53903-53</a></td></tr><tr><td>Rubrik</td><td><a href="http://104.155.34.32:5384/proxy/110488-87">http://104.155.34.32:5384/proxy/110488-87</a></td></tr><tr><td>SpaceX</td><td><a href="http://104.155.34.32:5384/proxy/46488-07">http://104.155.34.32:5384/proxy/46488-07</a></td></tr><tr><td>Stripe</td><td><a href="http://104.155.34.32:5384/proxy/54782-29">http://104.155.34.32:5384/proxy/54782-29</a></td></tr><tr><td>Triller</td><td><a href="http://104.155.34.32:5384/proxy/162754-03">http://104.155.34.32:5384/proxy/162754-03</a></td></tr><tr><td>Zipline</td><td><a href="http://104.155.34.32:5384/proxy/53944-57">http://104.155.34.32:5384/proxy/53944-57</a></td></tr></tbody></table>

### Mainnet

The entire Caplight universe of over 370 symbols are available onchain, including over 10,000 private company transactional data points.

For integration, [please contact SEDA](https://discord.gg/uBrQJZ2nrB).

</details>

<details>

<summary><strong>PolyRouter</strong> — Polymarket, Kalshi, Limitless, Manifold Markets, ProphetX, Novig, and SX Bet </summary>

[PolyRouter](https://polyrouter.io/) provides **unified API access to 7 prediction market platforms**: Polymarket, Kalshi, Manifold Markets, Limitless, ProphetX, Novig, and SX.bet. Get real-time market data, sports betting odds, and historical prices through one simple API.

## API Structure and Data Specification&#x20;

All Docs: <https://docs.polyrouter.io/>

For proxy query parameters see the following docs: [https://docs.polyrouter.io/api-reference/v2/list-markets](#https-docs.polyrouter.io-api-reference-v2-list-markets)

## API Endpoint&#x20;

**Mainnet**: <https://purity-production-f6ee.up.railway.app/proxy/markets>

</details>
