Stock Trades
Get tick-level trade data for a stock with precise timestamps. Provides granular trade information including exchange, conditions, and participant timestamps.
Use Case: Build time and sales displays, analyze order flow, and create tick-by-tick trading analysis tools.
Documentation Index
Fetch the complete documentation index at: https://finance.dev/llms.txt
Use this file to discover all available pages before exploring further.
Authorizations
OAuth2 Bearer token: obtain an access token from the token endpoint and send it in the Authorization header.
Query Parameters
Stock ticker symbol, such as AAPL. Use the exact ticker for the company you want to research.
"AAPL"
Query by timestamp (YYYY-MM-DD or nanoseconds)
"2024-01-15"
Timestamp start filter. Returns records at or after this timestamp.
"2024-01-01"
Timestamp lower-bound filter. Returns records after this timestamp, excluding the timestamp itself.
"2024-01-01"
Timestamp end filter. Returns records at or before this timestamp.
"2024-01-31"
Timestamp upper-bound filter. Returns records before this timestamp, excluding the timestamp itself.
"2024-01-31"
Sort order for returned records. Use asc for oldest first or desc for newest first when supported. Sort direction for results. Use ascending for oldest or smallest first, descending for newest or largest first.
asc, desc "asc"
Maximum number of results to return. Use smaller values for UI pages and larger values for exports within API limits.
1 <= x <= 500001000
Field used to sort results. Enter one of the sort fields supported by this endpoint.
"timestamp"
Pagination cursor from the previous response. Omit it on the first request, then send the returned cursor to fetch the next page.