Integrasikan ribuan Roblox scripts ke executor atau aplikasi kamu.
https://glitchmods.com/api
/api/fetch.php
Fetch Scripts
Ambil daftar script dengan filter dan pagination.
| Param | Type | Default | Deskripsi |
|---|---|---|---|
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) |
https://glitchmods.com/api/fetch.php?page=1&max=10&mode=free&isUniversal=1
/api/search.php
Search Scripts
Cari script berdasarkan keyword.
| Param | Type | Default | Deskripsi |
|---|---|---|---|
q |
string | โ | (Wajib) Kata kunci pencarian |
page |
integer | 1 | Halaman |
max |
integer | 20 | Jumlah per halaman |
mode |
string | โ | free atau paid |
https://glitchmods.com/api/search.php?q=blox+fruits+auto+farm
/api/trending.php
Trending Scripts
Ambil 20 script paling populer.
https://glitchmods.com/api/trending.php
/api/script.php
Get Script Detail
Ambil detail lengkap satu script termasuk kode Lua.
| Param | Type | Default | Deskripsi |
|---|---|---|---|
slug |
string | โ | Slug script |
id |
integer | โ | ID script (alternatif slug) |
https://glitchmods.com/api/script.php?slug=blox-fruits-auto-farm-123
{
"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"
}
]
}
}