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": "http://localhost:8087/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"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

ticker
string
required

Stock ticker symbol

Example:

"AAPL"

timestamp
string

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

Example:

"2024-01-15"

timestampFrom
string

From this timestamp (inclusive)

Example:

"2024-01-01"

timestampAfter
string

After this timestamp (exclusive)

Example:

"2024-01-01"

timestampTo
string

To this timestamp (inclusive)

Example:

"2024-01-31"

timestampBefore
string

Before this timestamp (exclusive)

Example:

"2024-01-31"

order
enum<string>

Sort order

Available options:
asc,
desc
Example:

"asc"

limit
integer

Maximum number of results

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

1000

sort
string

Sort field

Example:

"timestamp"

next
string

Pagination cursor

Response

200 - application/json

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