Skip to main content
GET
/
v1
/
equity
/
top-gainers
Get Top Gaining Stocks
curl --request GET \
  --url https://api.aries.com/v1/equity/top-gainers \
  --header 'Authorization: Bearer <token>'
[
  {
    "symbol": "AAPL",
    "type": "stock",
    "change": 1.25,
    "changePercent": 0.72,
    "isETF": false,
    "lastPrice": 175.43,
    "logoUrl": "https://cdn.example.com/logos/AAPL.png",
    "previousClose": 174.18,
    "sector": "Technology",
    "sicCode": "3571",
    "timestamp": 1736956800,
    "volume": 52000000
  }
]

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

limit
integer
default:10

Maximum number of results to return. Use smaller values for UI pages and larger values for exports within API limits. (optional, default 10)

Required range: 1 <= x <= 99

Response

Top gaining stocks retrieved successfully

change
number

Price change from previous close

changePercent
number

Percentage change from previous close

isETF
boolean

Whether the symbol is an ETF

lastPrice
number

Most recent trading price

logoUrl
string

URL to the company or ETF logo. Use it for visual identification in symbol lists.

previousClose
number

Previous session close price. Use it as the baseline for change and changePercent.

sector
string

Sector classification for the asset. Use it for grouping and filtering symbol lists.

sicCode
string

Standard Industrial Classification code

symbol
string

Trading symbol for the asset. Use this exact value when fetching quotes, charts, or research.

timestamp
number

Timestamp of the last update

type
string

Asset type filter. Use it to narrow unified snapshots to supported instrument classes. returned by the API, such as stock or ETF. Use it to decide which downstream workflows to show.

volume
number

Shares or contracts traded during the session. Use it to rank activity and liquidity.