Skip to content

AggregatesAPI (0.1.0)

A microservice to provide rollups, leaderboards, and breadth metrics across entities.

Languages
Servers
Mock server
https://dev-docs.vanda-analytics.com/_mock/apis/vanda-msvc-aggregates

Utility

Operations

breadth

Operations

summary

Operations

topFlows

Operations

Get Top Sectors/Themes by Flow

Request

Returns a ranked list of the top entities (sectors or themes) based on inbound/outbound flow over the specified period.

Security
HTTPBearer
Query
scopestring(AggregateScope)required

The entity type to aggregate (sector or theme).

Enum"sector""theme"
periodstring(AggregatePeriod)required

The comparison period for the flow (WoW, DoD, MoM).

Enum"DoD""WoW""MoM"
curl -i -X GET \
  'https://dev-docs.vanda-analytics.com/_mock/apis/vanda-msvc-aggregates/aggregates/top_flows?scope=sector&period=DoD' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'

Responses

Successful Response

Bodyapplication/jsonArray [
idstring(Id)required
namestring(Name)required
typestring(AggregateScope)required

Available scope for top flow aggregation.

Enum"sector""theme"
flow_valuenumber(Flow Value)required
change_pctnumber(Change Pct)required
]
Response
application/json
[ { "id": "string", "name": "string", "type": "sector", "flow_value": 0, "change_pct": 0 } ]