Check OOB slug availability
curl --request GET \
--url https://aquila.attaxr.com/api/oob/subdomain/available \
--cookie better-auth.session_token=const options = {method: 'GET', headers: {cookie: 'better-auth.session_token='}};
fetch('https://aquila.attaxr.com/api/oob/subdomain/available', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://aquila.attaxr.com/api/oob/subdomain/available"
headers = {"cookie": "better-auth.session_token="}
response = requests.get(url, headers=headers)
print(response.text){
"error": "<string>"
}OOB
Check OOB slug availability
Whether a slug is claimable: valid, not reserved, and not taken by another user.
GET
/
api
/
oob
/
subdomain
/
available
Check OOB slug availability
curl --request GET \
--url https://aquila.attaxr.com/api/oob/subdomain/available \
--cookie better-auth.session_token=const options = {method: 'GET', headers: {cookie: 'better-auth.session_token='}};
fetch('https://aquila.attaxr.com/api/oob/subdomain/available', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://aquila.attaxr.com/api/oob/subdomain/available"
headers = {"cookie": "better-auth.session_token="}
response = requests.get(url, headers=headers)
print(response.text){
"error": "<string>"
}
