curl --request GET \
--url https://api.vaultcord.com/blocklist \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": [
{
"id": 933,
"accId": 25204,
"userid": "720820224877789204",
"ip": "131.247.47.171",
"fingerprint": "1a5423084a51bd2b47fe3aedde108b0c",
"region": "ENG",
"country": "DZ",
"asn": 13335,
"created_at": 1715282199
}
]
}List the blocklists on a VaultCord account
curl --request GET \
--url https://api.vaultcord.com/blocklist \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": [
{
"id": 933,
"accId": 25204,
"userid": "720820224877789204",
"ip": "131.247.47.171",
"fingerprint": "1a5423084a51bd2b47fe3aedde108b0c",
"region": "ENG",
"country": "DZ",
"asn": 13335,
"created_at": 1715282199
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
List of VaultCord firewall blocklists. Used to deny access to specific members
true
Show child attributes
Random auto-increment ID
933
VaultCord account ID.
25204
Discord snowflake user ID to blocklist
"720820224877789204"
IP address to blocklist
"131.247.47.171"
Browser fingerprint to blocklist
"1a5423084a51bd2b47fe3aedde108b0c"
Region code from ip-api.com to blocklist
"ENG"
Country code from ip-api.com to blocklist
"DZ"
ASN number from ip-api.com to blocklist
13335
The creation date of the blocklist, in unix timestamp (seconds)
1715282199
Was this page helpful?