Skip to main content

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.

Creator profile

GET https://api.roscripts.io/v1/owners/{username}
Public profile and aggregate stats for a creator. We never expose internal user ids or emails.
username
string
required
The creator’s username.
{
  "result": {
    "owner": {
      "username": "somedev",
      "verified": true,
      "pro": true,
      "avatar": "https://…",
      "scriptCount": 12,
      "totalViews": 482301,
      "totalLikes": 9120
    }
  }
}
Returns 404 if the creator doesn’t exist.

Creator’s scripts

GET https://api.roscripts.io/v1/owners/{username}/scripts
That creator’s live scripts, with the full filter + sort + pagination set. Defaults to sortBy=score.
curl "https://api.roscripts.io/v1/owners/somedev/scripts?sortBy=views&max=20"
{
  "result": {
    "owner": "somedev",
    "scripts": [ { "id": "lst_…", "title": "…", "loadstring": "https://script.roscripts.io/…" } ],
    "page": 1, "max": 20, "total": 12, "totalPages": 1, "nextPage": null
  },
  "meta": { "page": 1, "max": 20, "total": 12, "totalPages": 1, "nextPage": null, "nextCursor": null }
}