# האם יש דרך לקבל רשימת נושאים מובילים עם מכפיל נוסחה שונה?

**URL:** https://meta.discourse.org/t/is-there-a-way-to-get-a-top-topic-list-with-different-formula-multiplier/253628
**Category:** Development
**Tags:** rest-api
**Created:** [1 בפברואר,‏ 2023,‏ 6:44am UTC](https://meta.discourse.org/t/is-there-a-way-to-get-a-top-topic-list-with-different-formula-multiplier/253628 "2023-02-01T06:44:31Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![Yuki](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/yuki/32/291328_2.png) [@Yuki](https://meta.discourse.org/u/Yuki)
#### Post date: [1 בפברואר,‏ 2023,‏ 6:44am UTC](https://meta.discourse.org/t/is-there-a-way-to-get-a-top-topic-list-with-different-formula-multiplier/253628/1 "2023-02-01T06:44:32Z")

</div>

I notice there’s a API to get a the top topic list. [Discourse API Docs](https://docs.discourse.org/#tag/Topics/operation/listTopTopics)  
And I can define what is the “top” list by changing the formula multiplier in the admin panel.

My question is that, is there a way I can query for a different “top” list without changing the parameter in the admin panel?  
for example, query for the most likes topic list and most views topic list at the same time.

---

<div class="post-metadata">

### Author: ![blake](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/blake/32/157322_2.png) [@blake](https://meta.discourse.org/u/blake)
#### Post date: [2 במרץ,‏ 2023,‏ 4:03pm UTC](https://meta.discourse.org/t/is-there-a-way-to-get-a-top-topic-list-with-different-formula-multiplier/253628/2 "2023-03-02T16:03:59Z")

</div>

> [@Yuki](#):
>
> My question is that, is there a way I can query for a different “top” list without changing the parameter in the admin panel?

No that is not possible. The /top route doesn’t accept any parameters like that. Those settings apply sitewide for all users and can’t be customized per request.

I would suggest using multiple [Data Explorer](https://meta.discourse.org/t/32566?silent=true) queries to get the data you are after:

> [@Calculating "Top" topics in Discourse](https://meta.discourse.org/t/calculating-top-topics-in-discourse/240928/1):
>
> This [Data Explorer](https://meta.discourse.org/t/32566?silent=true) query is pretty much identical to the Top page, just with a custom date range and the ability to get current results at the click of a button. You can use this query to see the exact “Top Score” for each topic along with other information about topics filtered by “Top”.

Once the queries are setup, they can be executed via the API.
