Skip to main content
GET
/
v1
/
analytics
/
market-breadth
Get Market Breadth
curl --request GET \
  --url https://api.aries.com/v1/analytics/market-breadth \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "advanceDeclineRatio": 1.85,
    "advancers": 2840,
    "advancersPercent": 62.5,
    "decliners": 1532,
    "declinersPercent": 33.7,
    "timestamp": "2026-03-09T13:48:11.726532Z",
    "totalSymbols": 4544,
    "unchanged": 172
  }
}

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.

Response

Market breadth data retrieved successfully

success
boolean
data
object
Example:
{
"advanceDeclineRatio": 1.85,
"advancers": 2840,
"advancersPercent": 62.5,
"decliners": 1532,
"declinersPercent": 33.7,
"timestamp": "2026-03-09T13:48:11.726532Z",
"totalSymbols": 4544,
"unchanged": 172
}