The leaderboard on the Visibility tile is the same aggregate call as the headline — without the asset filter. The API returns one row per asset, and you sort client-side.Documentation Index
Fetch the complete documentation index at: https://docs.tryprofound.com/llms.txt
Use this file to discover all available pages before exploring further.
How this example works
- Add
asset_nameto dimensions, drop the filter. Now every asset gets its own row. - Sort client-side. The API returns rows in the order it computed them
(typically sorted by the first metric descending); always re-sort in your
code to be deterministic. Use
reverse=Truefor “higher is better” metrics likevisibility_score, andreverse=Falseforaverage_position(lower rank = better). pagination.limit. The default is 100. Set it higher (max 50,000) if your category has many assets.
Highlighting your owned assets
To mark your own assets in the leaderboard (the “Owned” tag in the Profound UI), join the response against the List your owned assets recipe — it returns the set of asset names flaggedis_owned in this category.