Skip to main content
GET
/
v1
/
stocks
/
trades
Get Stock Trades
curl --request GET \
  --url https://api.aries.com/v1/stocks/trades \
  --header 'Authorization: Bearer <token>'
{
  "nextUrl": "https://api.aries.com/v1/stocks/trades?next=YXA9MTAwMDM3MDkmYXM9YXRsYXMtc3RvY2tzLXRyYWRlcyZsaW1pdD0xMDAwJm9yZGVyPWRlc2Mmc29ydD10aW1lc3RhbXAmdGltZXN0YW1wLmx0ZT0yMDI2LTAxLTAyVDIyJTNBNTAlM0EwNS4xNzU5NTM5NTRa&ticker=AAPL",
  "requestId": "065feb8d4f03d1b18c1f13237a342e3f",
  "results": [
    {
      "conditions": [
        12
      ],
      "exchange": 4,
      "id": "360988",
      "participantTimestamp": 1767401995260648000,
      "price": 270.9607,
      "sequenceNumber": 10029677,
      "sipTimestamp": 1767401995260878300,
      "size": 391,
      "tape": 3,
      "trfId": 202,
      "trfTimestamp": 1767401995260857300
    }
  ],
  "status": "DELAYED"
}

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

Authorization
string
header
required

OAuth2 Bearer token: obtain an access token from the token endpoint and send it in the Authorization header.

Query Parameters

ticker
string
required

Stock ticker symbol, such as AAPL. Use the exact ticker for the company you want to research.

Example:

"AAPL"

timestamp
string

Query by timestamp (YYYY-MM-DD or nanoseconds)

Example:

"2024-01-15"

timestampFrom
string

Timestamp start filter. Returns records at or after this timestamp.

Example:

"2024-01-01"

timestampAfter
string

Timestamp lower-bound filter. Returns records after this timestamp, excluding the timestamp itself.

Example:

"2024-01-01"

timestampTo
string

Timestamp end filter. Returns records at or before this timestamp.

Example:

"2024-01-31"

timestampBefore
string

Timestamp upper-bound filter. Returns records before this timestamp, excluding the timestamp itself.

Example:

"2024-01-31"

order
enum<string>

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.

Available options:
asc,
desc
Example:

"asc"

limit
integer

Maximum number of results to return. Use smaller values for UI pages and larger values for exports within API limits.

Required range: 1 <= x <= 50000
Example:

1000

sort
string

Field used to sort results. Enter one of the sort fields supported by this endpoint.

Example:

"timestamp"

next
string

Pagination cursor from the previous response. Omit it on the first request, then send the returned cursor to fetch the next page.

Response

Successful response

nextUrl
string

URL for next page of results

requestId
string

Unique request ID

results
object[]

Array of trade objects

status
string

Status of the response