Skip to main content
GET
/
v1
/
stocks
/
quotes
Get Stock Quotes (NBBO)
curl --request GET \
  --url https://api.aries.com/v1/stocks/quotes \
  --header 'Authorization: Bearer <token>'
{
  "nextUrl": "http://localhost:8087/v1/stocks/quotes?next=YXA9MCZhcz0mbGltaXQ9MTAwMCZvcmRlcj1kZXNjJnNvcnQ9dGltZXN0YW1wJnRpbWVzdGFtcC5sdGU9MjAyNi0wMS0wMlQyMCUzQTU5JTNBNTkuNTEzODEyODU2Wg&ticker=AAPL",
  "requestId": "399655f8ac3c2844fa53720e1c5989ae",
  "results": [
    {
      "askExchange": 21,
      "askPrice": 271.1,
      "askSize": 600,
      "bidExchange": 12,
      "bidPrice": 270.96,
      "bidSize": 100,
      "indicators": [
        604
      ],
      "participantTimestamp": 1767401938487902500,
      "sequenceNumber": 88394647,
      "sipTimestamp": 1767401938487914800,
      "tape": 3
    }
  ],
  "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 NBBO quote objects

status
string

Status of the response