Skip to catalog

Developers

Public API

Read-only JSON endpoints for Roblox Script Hubs. No key, no auth — just call them. Publishing endpoints are private and not documented here.

GET /api/posts

Every published forum guide with its link, game icon, title and description. Newest first.

ParamTypeDescription
limitintegerOptional. Cap the number of posts returned (1–500).
slugstringOptional. Return a single guide by its slug.

Example request

curl https://robloxscripthubs.com/api/posts

# single guide
curl "https://robloxscripthubs.com/api/posts?slug=dungeon-quest-reborn-hub-guide"

Example response

{
  "count": 2,
  "posts": [
    {
      "slug": "dungeon-quest-reborn-hub-guide",
      "url": "https://robloxscripthubs.com/forum/dungeon-quest-reborn-hub-guide",
      "title": "Dungeon Quest Reborn Hub Guide: Farming, Combat and ESP Options",
      "description": "Review the Dungeon Quest Reborn hub listing on Roblox Script Hubs...",
      "icon": "https://robloxscripthubs.com/thumbnails/dungeon-quest-reborn.png",
      "game": "Dungeon Quest Reborn",
      "listing": "https://robloxscripthubs.com/scripts/dungeon-quest-reborn",
      "listingSlug": "dungeon-quest-reborn",
      "tags": ["Dungeon Quest Reborn", "hub"],
      "publishedAt": "2026-09-02T18:40:11.000Z",
      "updatedAt": "2026-09-02T20:12:45.000Z"
    }
  ]
}

icon is an absolute image URL (the game icon) and may be null. Responses send CORS Access-Control-Allow-Origin: * and are cached for 60 seconds.

GET /api/scripts

The full hub catalog: every listing with its loader, features, live player count and icon.

ParamTypeDescription
qstringOptional. Search game names, titles, tags and features (max 80 chars).

Example request

curl "https://robloxscripthubs.com/api/scripts?q=blox"

Example response (truncated)

{
  "scripts": [
    {
      "slug": "dungeon-quest-reborn",
      "gameName": "Dungeon Quest Reborn",
      "title": "Dungeon Quest Reborn Hub Loader — Auto Farm, Kill Aura, ESP",
      "excerpt": "Working Dungeon Quest Reborn hub for executors...",
      "description": "Full listing description...",
      "features": ["Auto Farm", "Kill Aura", "ESP"],
      "tags": ["Dungeon Quest Reborn"],
      "executors": ["Delta", "Wave"],
      "playing": 35580,
      "thumbnail": "/thumbnails/dungeon-quest-reborn.png",
      "loaderCode": "loadstring(game:HttpGet(\"https://...\"))()",
      "createdAt": "2026-08-30T10:00:00.000Z",
      "updatedAt": "2026-09-02T08:00:00.000Z"
    }
  ]
}

Rate limits & etiquette

  • • Cache responses — data updates every few minutes, no need to hammer.
  • • Keep the User-Agent header descriptive.
  • • Write and publishing endpoints are private (token-gated) and intentionally undocumented.