Skip to main content
GET
/
v1
/
scripts
/
trending
Trending
curl --request GET \
  --url https://api.roscripts.io/v1/scripts/trending
{
  "result.scripts": [
    {}
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.sirius.menu/llms.txt

Use this file to discover all available pages before exploring further.

Returns the top scripts by ranking score — a blend of votes, recent view velocity, and freshness. The ranking recomputes hourly, and responses are cached for 5 minutes, so polling faster than that just returns the same data.
curl "https://api.roscripts.io/v1/scripts/trending?max=20"

Query parameters

max
integer
default:"20"
Number of scripts. Max 20 anonymous, 100 with a key.
placeId
integer
Restrict trending to a single game.

Response

result.scripts
Script[]
Top scripts, highest score first.
{
  "result": {
    "max": 20,
    "scripts": [
      { "id": "lst_…", "title": "…", "score": 6.12, "views": 40213, "loadstring": "https://script.roscripts.io/…" }
    ]
  }
}
Want trending search terms instead of scripts? Use /v1/trending/searches.