Blocklists
List Blocklists
Blocklists
List Blocklists
List the blocklists on a VaultCord account
GET
/
blocklist
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
}
]
}
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:
933
VaultCord account ID.
Example:
25204
Discord snowflake user ID to blocklist
Example:
"720820224877789204"
IP address to blocklist
Example:
"131.247.47.171"
Browser fingerprint to blocklist
Example:
"1a5423084a51bd2b47fe3aedde108b0c"
Region code from ip-api.com to blocklist
Example:
"ENG"
Country code from ip-api.com to blocklist
Example:
"DZ"
ASN number from ip-api.com to blocklist
Example:
13335
The creation date of the blocklist, in unix timestamp (seconds)
Example:
1715282199
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
}
]
}