US Equities Trade Only Minute Bar
The U.S. Equities Trade-Only Minute Bar dataset provides a minute-by-minute summary of executed trades for U.S. exchange-listed equities, constructed exclusively from trade data (no quotes). Each one-minute interval includes Open, High, Low, Close, and Volume (OHLCV) metrics, along with VWAP and trade count, offering a concise yet informative view of intraday trading activity without the complexity of quote-based analytics. The dataset is derived from the consolidated Equity Securities Informati
GEThttps://api.devalgoseek.com/api/v1/data/us-equity/eq-trades-1min#
The U.S. Equities Trade-Only Minute Bar dataset provides a minute-by-minute summary of executed trades for U.S. exchange-listed equities, constructed exclusively from trade data (no quotes). Each one-minute interval includes Open, High, Low, Close, and Volume (OHLCV) metrics, along with VWAP and trade count, offering a concise yet informative view of intraday trading activity without the complexity of quote-based analytics. The dataset is derived from the consolidated Equity Securities Information Processor (SIP) trade feed and includes all eligible trades, covering on-exchange executions as well as off-exchange trades reported to FINRA Trade Reporting Facilities (TRF). Coverage spans all exchange-traded U.S. equity issue types, including common and preferred stocks, ETFs, ETNs, ADRs, warrants, and units.
For more details, please refer to the dataset documentation: US Equities Trade Only Minute Bar Guide (algoseek and Excluding FINRA TRF aggregation logic), US Equities Industry Standard Trade Only Minute Bar Guide (Industry Standard aggregation logic).
Aggregation Logic Options#
This dataset is available with different aggregation logic variants, which may affect how certain data fields are calculated.
algoseek#
algoseek core team comes from a high-frequency background and uses accepted de facto standards for calculating OHLC bars. See documentation for details on included/excluded fields.
Excluding FINRA TRF#
Excludes all trades that are done off the public ("lit") exchanges. These trades from dark pools, internal crossing, OTC deals, etc. These are trades that are not normally possible to participate in, so they can skew the backtesting if Client is only executing on public exchanges. Removing these trades provides a more realistic view of actual trades taking place, but does lose insight into the whole market.
Industry Standard#
Replicates the approach used by the industry's largest screen data vendor, which is also considered an industry standard by many professionals. The approach varies from modern calculations because it was set back in the 1990s in terms of the types of exchange flags that are included/excluded; see the specification for details.
Note: This dataset has an adjusted version available. By default, the endpoint returns price and volume values 'as-is' based on information published on the exchange. The adjusted version includes backward-adjusted data that accounts for corporate actions such as dividends and stock splits, which affect fields based on price and volume. You can control this behavior by using the adjusted query parameter in your API requests.
Advanced Filtering
You can provide one or multiple filter expressions based on the dataset's columns to narrow down the results. For example, StartDate.gt=2023-01-01&StartDate.lt=2023-12-31, Ticker=AAPL.
Please refer to the Advanced Filtering Guide for the extensive reference.
Request#
Query Parameters#
- Adjustment enabled
- Adjustment disabled
- JSON
- CSV Gzip
Flag to indicate whether to return adjusted price and volume data
falseReturn the adjusted data
trueReturn unadjusted data (default behavior)
falseSorting criteria for the results. Provide a column name with optional prefix '+' for ascending order, or prefix with '-' for descending order. Multiple sorting fields may be supported depending on the dataset. If sort prefix is not provided, the ascending order is applied.
A comma-separated list of columns to include in the response. Use this parameter to select only specific fields from the dataset. If not provided, all available columns will be returned.
Possible values: >= 0
Number of records to skip before returning results. To be used with the limit parameter for pagination. If not provided, defaults to 0.
0100Possible values: >= 0 and <= 100000
Maximum number of records to return. Used to control response size and pagination. If not provided, a default limit is applied by the server.
10000100Possible values: [json, csv, csv_gzip]
The type of the data to return
jsonJSON format (default)
jsonCompressed CSV format
csv_gzipPossible values: [algoseek, no_finra_trf, industry_std]
Aggregation logic variant of the dataset
algoseekResponses#
- 200
- 403
- 422
- 429
JSON, CSV file, or gzip-compressed CSV file, depending on the value of response_format query parameter
- application/json
- text/csv
- application/gzip
- Schema
- Example (auto)
Schema
- Array [
- ]
data object[]required
The trading day
2023-08-02The timestamp of the bar start (EST)
2023-08-02 09:30:00Symbol name
AAPLA unique identifier for a security
1010000000001033Price of the first trade
195.04Trade with the highest price
195.18Trade with the lowest price
194.8Price of the last trade
194.91Volume-weighted average price
194.99545Total number of shares traded
848436Total number of trades
7183pagination objectrequired
The number of records skipped to fetch the current page
0The maximum number of records in the current page
The number of records to skip to fetch the next page
{
"data": [
{
"TradeDate": "2023-08-02",
"BarDateTime": "2023-08-02 09:30:00",
"Ticker": "AAPL",
"ASID": 1010000000001033,
"FirstTradePrice": 195.04,
"HighTradePrice": 195.18,
"LowTradePrice": 194.8,
"LastTradePrice": 194.91,
"VolumeWeightPrice": 194.99545,
"Volume": 848436,
"TotalTrades": 7183
}
],
"pagination": {
"limit": 1000,
"next_offset": 2000,
"offset": 1000
}
}
- Schema
- Example (auto)
Schema
"string"
- Schema
- Example (auto)
Schema
"string"
Forbidden
- application/json
Validation Error
- application/json
- Schema
- Example (auto)
Schema
- Array [
- Array [anyOf
- string
- integer
- ]
- ]
detail object[]
loc object[]required
{
"detail": [
{
"loc": [
"string",
0
],
"msg": "string",
"type": "string",
"ctx": {}
}
]
}
Request rejected because the identity or team exceeded a configured monthly or per-minute usage quota. When available, the response includes rate-limit headers describing the current quota.
Response Headers
Configured quota limit for the resource that was exceeded.
Remaining quota before the limit is reached. This is 0 when the request is rejected.
Number of seconds left in the current quota period before usage resets.
- application/json
- csharp
- curl
- dart
- go
- http
- java
- javascript
- kotlin
- c
- nodejs
- objective-c
- ocaml
- php
- postman-cli
- powershell
- python
- r
- ruby
- rust
- shell
- swift
- HTTPCLIENT
- RESTSHARP
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://api.devalgoseek.com/api/v1/data/us-equity/eq-trades-1min");
request.Headers.Add("Accept", "application/json");
request.Headers.Add("X-API-KEY", "<X-API-KEY>");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Click the Send API Request button above and see the response here!