This proxy API was built to restore functionality to my script searcher website after Scriptblox updated their API and website. It now supports the new API parameters while still offering temporary legacy support during the migration period.
proxy url: https://scriptblox-api-proxy.vercel.app/api/
Fetches a list of scripts from the Scriptblox API.
- Method:
GET - Description: Retrieves all scripts available on Scriptblox. The endpoint now supports explicit parameters in place of the legacy
filtersparameter. Legacy filters are automatically mapped to the new parameters; however, you can pass the new parameters directly if desired. - Rate Limiting: 1 request per second.
No additional parameters are required.
instead, you can include:
page(number, optional): Page number for pagination.filters(string, optional): Legacy filter value. Accepted values are:free→ mapped tomode=freepaid→ mapped tomode=paidverified→ mapped toverified=1unverified→ mapped toverified=0newest→ mapped tosortBy=createdAt&order=descoldest→ mapped tosortBy=createdAt&order=ascmostviewed→ mapped tosortBy=views&order=descleastviewed→ mapped tosortBy=views&order=aschot→ uses the dedicated trending endpoint
Returns a JSON object containing script data.
https://scriptblox-api-proxy.vercel.app/api/fetch?page=1&mode=free
{
"result": {
"totalPages": 719,
"nextPage": 2,
"max": 20,
"scripts": [
{
"_id": "66aa72f69a9e4d48a6e2174d",
"title": "Ro ghoul OP script",
"game": {
"gameId": 914010731,
"name": "[AmonK2!!!] Ro-Ghoul [ALPHA]",
"imageUrl": "https://tr.rbxcdn.com/f4c26efe0e79100320b6bce4c0b74fad/500/280/Image/Jpeg"
},
...
}
]
}
}Searches for scripts using a provided query string.
- Method:
GET - Description: Searches Scriptblox for scripts matching your query. In addition to the new parameters, the legacy
filtersparameter is supported and will be automatically mapped. You can also pass the new parameters (mode,verified,sortBy,order) directly. - Rate Limiting: 1 request per second.
- Query Parameters:
q(string, required): The search query.page(number, optional): Page number for pagination.scriptName(string, optional): Filter results by script name.mode(string, optional): Filter results by mode (freeorpaid).filters(string, optional): Legacy filter values (see/api/fetchfor supported values).
Returns a JSON object containing the search results.
Request URL:
https://scriptblox-api-proxy.vercel.app/api/search?q=Arsenal&page=2&max=10&mode=free&verified=1&sortBy=views&order=desc&strict=false
{
"result": {
"totalPages": 47,
"scripts": [
{
"_id": "667a72d2bdddf02d71072a9d",
"title": "solaris.lol",
"game": {
"gameId": 301549746,
"name": "Counter Blox",
"imageUrl": "/images/script/301549746-1719300818355.webp"
},
"script": "loadstring(game:HttpGet(\"https://rawscripts.net/raw/Counter-Blox-Solaris-14633\"))()",
"slug": "Counter-Blox-Solaris-14633",
"verified": true,
"key": false,
"keyLink": "",
"views": 268251,
"scriptType": "free",
"isUniversal": false,
"isPatched": false,
"visibility": "public",
"createdAt": "2024-06-25T07:33:38.416Z",
"updatedAt": "2025-02-14T18:59:02.332Z",
"__v": 0,
"matched": [
"features",
"tags"
]
},
...
]
}
}Fetches user information from the Scriptblox API.
- Method:
GET - Description: Retrieves account details for a specified username.
- Query Parameters:
username(string, required): The username of the user.
Returns a JSON object containing user data.
Request URL:
https://scriptblox-api-proxy.vercel.app/api/info?username=YellowGreg
{
"user": {
"_id": "64d526aaafa696af4c6d5f20",
"username": "YellowGreg",
"verified": true,
"role": "user",
"profilePicture": "/images/photo/64d526aaafa696af4c6d5f20-1727043362341.jpg",
"bio": "👋 Hi, I create basic & straightforward scripts that focus on simple useful features.",
"createdAt": "2023-08-10T18:04:26.778Z",
"lastActive": "2024-10-22T04:32:04.976Z",
"discord": {
"id": "773952016036790272",
"username": "yellowgreg",
"discriminator": "0"
},
"status": "offline",
"id": "64d526aaafa696af4c6d5f20",
"followingCount": 0,
"followersCount": 6,
"scriptCount": 9
}
}Fetches the profile picture of a user from the Scriptblox API.
- Method:
GET - Description: Retrieves the profile image of a user based on their username.
- Query Parameters:
username(string, required): The username of the user.
Returns the user's profile picture as an image response.
Request URL:
https://scriptblox-api-proxy.vercel.app/api/pfp?username=YellowGreg
Fetches the currently trending scripts from Scriptblox.
-
Method:
GET -
Description: Returns a targeted list of scripts receiving the most community interactions recently.
-
Query Parameters:
max(number, optional): Limits the number of results returned (maximum 20). Defaults to 20 if not specified.
https://scriptblox-api-proxy.vercel.app/api/trending?max=10
Returns a JSON object with the structure:
{
"result": {
"max": 10,
"scripts": [
{
"_id": "string",
"title": "string",
"game": {
"_id": "string",
"name": "string",
"imageUrl": "string"
},
"slug": "string",
"verified": true,
"key": false,
"views": 12345,
"scriptType": "string",
"isPatched": false,
"isUniversal": true,
"createdAt": "2025-07-22T00:00:00Z",
"image": "string"
}
// ...
]
}
}This proxy makes HTTP requests to the Scriptblox API endpoints to fetch or search for scripts. It also implements rate limiting (1 request per second) to help avoid hitting API rate limits, ensuring stable and reliable access even during peak usage.
The proxy has been updated to support the new API parameters introduced by Scriptblox. Legacy requests that still use the deprecated filters parameter are automatically translated to their new equivalents. This legacy mapping is temporary, allowing for a grace period during migration.
This API is free to use. It was created to restore functionality to my script searcher website after the Scriptblox API changes disrupted my script searcher website.