When you registerDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/creepersbs/register/llms.txt
Use this file to discover all available pages before exploring further.
yourname.creepers.sbs, you get exactly that subdomain. Spare records let you go further — they create additional DNS entries that live under your subdomain, such as mc.yourname.creepers.sbs or docs.yourname.creepers.sbs. You define them inside the "record" object of your registration file, alongside your main DNS records.
How spare records work
A spare record is an array with three elements:- Subdomain prefix — the label to prepend to your registered subdomain (e.g.,
"mc"createsmc.yourname.creepers.sbs). - Record type — any supported DNS record type:
A,AAAA,CNAME,MX, etc. - Target — the value the record points to (an IP address, hostname, etc.).
"spare_record" and is incremented for each additional entry: "spare_record", "spare_record_2", "spare_record_3", and so on. You can add as many as you need.
yourname on creepers.sbs, would create:
mc.yourname.creepers.sbs→ A record pointing to198.51.100.50docs.yourname.creepers.sbs→ CNAME pointing toyourname.github.ioapi.yourname.creepers.sbs→ A record pointing to198.51.100.51
Full example with spare records
The following is a complete registration file for a developer using spare records to separate their Minecraft server, documentation site, and API from their main web presence.devsetup.json
| Subdomain | Type | Target |
|---|---|---|
devsetup.creepers.sbs | A | 198.51.100.10 |
mc.devsetup.creepers.sbs | A | 198.51.100.50 |
docs.devsetup.creepers.sbs | CNAME | devsetup.github.io |
api.devsetup.creepers.sbs | A | 198.51.100.51 |
devsetup.creepers.sbs | TXT | google-site-verification=abc123xyz |
Spare records when registering multiple TLDs
If you register across multiple TLDs using the complete template, spare records are scoped to the TLD section they appear in. The"record" block handles creepers.sbs, the "record_2" block handles creepers.cloud, and so on. Each block has its own independent set of spare records.
mc.devsetup.creepers.sbs is created under .sbs, while status.devsetup.creepers.cloud is created under .cloud — they are completely independent.
Spare record prefixes follow the same naming restrictions as top-level subdomains. Reserved names such as
mc, play, admin, and country codes are not allowed as root subdomains, but they are allowed as spare record prefixes under your own subdomain (e.g., mc.yourname.creepers.sbs is fine).