Allowlists
List Allowlists
Allowlists
List Allowlists
List the allowlists on a VaultCord account
GET
/
allowlist
curl --request GET \
--url https://api.vaultcord.com/allowlist \
--header 'Authorization: Bearer <token>'
{
"success": true,
"data": [
{
"id": 85,
"accId": 25204,
"userid": "720820224877789204",
"ip": "1.1.1.1",
"fingerprint": "1a5423084a51bd2b47fe3aedde108b0c",
"region": "ENG",
"country": "GB",
"asn": 13335,
"domain": "notexttospeech@gmail.com",
"created_at": 1715282199
}
]
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200
application/json
resource retrieved
Example:
true
Random auto-increment ID
Example:
85
VaultCord account ID.
Example:
25204
Discord snowflake user ID to allowlist
Example:
"720820224877789204"
IP address to allowlist
Example:
"1.1.1.1"
Browser fingerprint to allowlist
Example:
"1a5423084a51bd2b47fe3aedde108b0c"
Region code from ip-api.com to allowlist
Example:
"ENG"
Country code from ip-api.com to allowlist
Example:
"GB"
ASN number from ip-api.com to allowlist
Example:
13335
Email address domain to allowlist
Example:
"notexttospeech@gmail.com"
The creation date of the blocklist, in unix timestamp (seconds)
Example:
1715282199
curl --request GET \
--url https://api.vaultcord.com/allowlist \
--header 'Authorization: Bearer <token>'
{
"success": true,
"data": [
{
"id": 85,
"accId": 25204,
"userid": "720820224877789204",
"ip": "1.1.1.1",
"fingerprint": "1a5423084a51bd2b47fe3aedde108b0c",
"region": "ENG",
"country": "GB",
"asn": 13335,
"domain": "notexttospeech@gmail.com",
"created_at": 1715282199
}
]
}