Developers

Public API

Read-only JSON endpoints for Keylesscript. 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 http://localhost:3000/api/posts

# single guide
curl "http://localhost:3000/api/posts?slug=dungeon-quest-reborn-script-guide"

Example response

{
  "count": 3,
  "posts": [
    {
      "slug": "dungeon-quest-reborn-script-guide",
      "url": "http://localhost:3000/forum/dungeon-quest-reborn-script-guide",
      "title": "Dungeon Quest Reborn Script Guide: Auto Farm, Kill Aura and ESP",
      "description": "A practical look at the Dungeon Quest Reborn script listing...",
      "icon": "http://localhost:3000/thumbnails/dungeon-quest-reborn.png",
      "game": "Dungeon Quest Reborn",
      "listing": "http://localhost:3000/scripts/dungeon-quest-reborn",
      "listingSlug": "dungeon-quest-reborn",
      "tags": ["Dungeon Quest Reborn", "script"],
      "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 script 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 "http://localhost:3000/api/scripts?q=blox"

Example response (truncated)

{
  "scripts": [
    {
      "slug": "dungeon-quest-reborn",
      "gameName": "Dungeon Quest Reborn",
      "title": "Axon Hub Dungeon Quest Reborn Script — Auto Farm, Kill Aura & ESP",
      "excerpt": "Axon Hub Dungeon Quest Reborn script with Auto Farm, Kill Aura and ESP...",
      "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.