VortexScripts

Public API

Read-only JSON endpoints for executors, Discord bots and dashboards. No API key needed — just fetch.

The API is read-only by design. There are no POST, PUT or DELETE endpoints — scripts can only be published from the website by a signed-in author who passes the human check.

GET/api/public/v1/scripts

List scripts with search, filters and pagination.

q
Search title, game and features.
game
Exact game name, e.g. Blox Fruits.
game_id
Roblox place ID.
status
working, updating or patched.
keyless
true returns only keyless scripts.
verified
true returns only verified-safe scripts.
page
Page number, default 1.
limit
Results per page, max 50.
/api/public/v1/scripts?q=esp&verified=true&limit=5
GET/api/public/v1/scripts/{id}

Fetch one script: metadata, features, view count and full Luau source.

/api/public/v1/scripts/s1
GET/api/public/v1/raw/{id}

Raw Luau as plain text — this is the URL a loadstring should point at.

/api/public/v1/raw/s1
GET/api/public/v1/games

Every indexed Roblox game with its script count.

/api/public/v1/games
GET/api/public/v1/stats

Hub totals: scripts, views, copies, downloads, likes and active games.

/api/public/v1/stats