0 Member online
1 Guest online
0 Admin/Owner online

๐Ÿ“ก ScriptBlox Public API

Integrasikan ribuan Roblox scripts ke executor atau aplikasi kamu.

โ„น๏ธ API ini gratis dan tidak butuh authentication. Harap sertakan attribution "Powered by ScriptBlox" di integrasi kamu.
Base URL
URL
https://glitchmods.com/api
GET /api/fetch.php Fetch Scripts

Ambil daftar script dengan filter dan pagination.

Parameters
ParamTypeDefaultDeskripsi
page integer 1 Halaman ke berapa
max integer 20 Jumlah per halaman (maks 50)
mode string โ€” free atau paid
sort string newest newest | views | likes
isUniversal boolean โ€” 1 = universal only
isPatched boolean โ€” 1 = patched only
verified boolean โ€” 1 = verified only
game string โ€” Slug game (contoh: blox-fruits)
Contoh Request
URL
https://glitchmods.com/api/fetch.php?page=1&max=10&mode=free&isUniversal=1
GET /api/search.php Search Scripts

Cari script berdasarkan keyword.

Parameters
ParamTypeDefaultDeskripsi
q string โ€” (Wajib) Kata kunci pencarian
page integer 1 Halaman
max integer 20 Jumlah per halaman
mode string โ€” free atau paid
Contoh Request
URL
https://glitchmods.com/api/search.php?q=blox+fruits+auto+farm
GET /api/trending.php Trending Scripts

Ambil 20 script paling populer.

Contoh Request
URL
https://glitchmods.com/api/trending.php
GET /api/script.php Get Script Detail

Ambil detail lengkap satu script termasuk kode Lua.

Parameters
ParamTypeDefaultDeskripsi
slug string โ€” Slug script
id integer โ€” ID script (alternatif slug)
Contoh Request
URL
https://glitchmods.com/api/script.php?slug=blox-fruits-auto-farm-123
๐Ÿ“„ Struktur Response
JSON
{
  "result": {
    "totalPages": 10,
    "nextPage": 2,
    "max": 20,
    "scripts": [
      {
        "_id": 123,
        "title": "Blox Fruits Auto Farm",
        "slug": "blox-fruits-auto-farm-123",
        "game": {
          "_id": 1,
          "name": "Blox Fruits",
          "imageUrl": "https://..."
        },
        "owner": "scriptmaster99",
        "scriptType": "free",
        "isUniversal": false,
        "isPatched": false,
        "verified": true,
        "key": false,
        "views": 15000,
        "likes": 342,
        "image": "https://...",
        "createdAt": "2024-01-15 12:00:00"
      }
    ]
  }
}