DEVELOPER API

xdayoungx API

Public API for obfuscation and key verification. Read the guide below, then sign in with Discord to issue a key.

1

Read the guide

Check key format, request methods, and supported endpoints below first.

2

Sign in with Discord

After login you can issue up to 5 API keys per account.

3

Call with your key

Send the key in a header to call obfuscation and verify APIs and track usage.

API guide

Free

Key format

xdayoungx-XXXXXXXXXXXXXXXXXXXX

Prefix plus 20 alphanumeric characters. Issue keys from the dashboard after login.

How to send the key

  • X-Api-Key header
  • Authorization: Bearer YOUR_KEY
  • Query ?api_key=YOUR_KEY

Why use a key

  • Relaxed rate limits on obfuscation requests
  • Every call is logged for your account
  • Per-key totals and last-used time in the dashboard
AUTOEXE /gagshop/_exec/auto-loader Grow a Garden 2 / Fisch auto routing
warn("[AUTOEXE] start placeId=", game.PlaceId)
repeat task.wait() until game:IsLoaded()
repeat task.wait(1) until game.Players.LocalPlayer
task.wait(5)

local function __xdayLoadRemote(url, tag)
	warn("[" .. tag .. "] loading", url)
	local src = game:HttpGet(url, true)
	if typeof(src) ~= "string" or src == "" then
		error("empty script")
	end
	if src:find("ERR:404", 1, true) or src:find("not_found", 1, true) then
		error("wrong key or 404 — dashboard EXEC_LOADER_KEY 확인")
	end
	local fn = loadstring(src)
	if type(fn) ~= "function" then
		error("compile failed")
	end
	fn()
end

local ok, err = pcall(function()
	__xdayLoadRemote("https://api.ssgontop.shop/gagshop/_exec/auto-loader?k=xdayoungx-exec-FisvH34A8EbnzJ2XjPaSwWFuwLlvyteF&v=1785316424", "AUTOEXE")
end)

if not ok then
	warn("[AUTOEXE LOAD FAIL]", err)
end

With API key xdayoungx-

Calls that accept keys issued on this page. Usage is tracked.

POST /api/obfuscate Obfuscate Lua source
curl -X POST https://api.ssgontop.shop/api/obfuscate \
  -H "Content-Type: application/json" \
  -H "X-Api-Key: xdayoungx-XXXXXXXXXXXXXXXXXXXX" \
  -d '{"source":"print(\"hello\")"}'
GET /api/v1/verify Validate API key
curl https://api.ssgontop.shop/api/v1/verify \
  -H "X-Api-Key: xdayoungx-XXXXXXXXXXXXXXXXXXXX"

Public no key

Open to everyone. No API key required.

  • GET/api/healthServer status
  • GET/api/obfuscate/healthObfuscator status
  • GET/api/exploitsExecutor list
  • GET/api/obfuscate/captchaCaptcha when rate limited

Hub updates no key

For the xdayoungx hub client.

  • GET/api/xdayoungx/update/public-infoLatest version info
  • POST/api/xdayoungx/update/checkCheck for updates

Script keys separate

For 24h keys from Get Key. Not the same as xdayoungx- API keys.

  • POST/api/key/statusScript key status
  • GET/api/verifyVerify script key (32 char)
  • POST/api/executionLog script execution