Skip to main content
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.

How this example works

  1. Add asset_name to dimensions, drop the filter. Now every asset gets its own row.
  2. 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=True for “higher is better” metrics like visibility_score, and reverse=False for average_position (lower rank = better).
  3. 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 flagged is_owned in this category.