Blacklists
List Blacklists
Blacklists
List Blacklists
List out the blacklists on account
GET
/
blacks
curl --request GET \
--url https://api.vaultcord.com/blacks \
--header 'Authorization: Bearer <token>'
{
"success": true,
"data": [
{
"id": 933,
"accId": 25204,
"userid": null,
"ip": null,
"fingerprint": null,
"region": null,
"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 blacklist
Example:
null
IP address to blacklist
Example:
null
Browser fingerprint to blacklist
Example:
null
Region code from ip-api.com to blacklist
Example:
null
Country code from ip-api.com to blacklist
Example:
"DZ"
ASN number from ip-api.com to blacklist
Example:
13335
The creation date of the blacklist, in unix timestamp (seconds)
Example:
1715282199
curl --request GET \
--url https://api.vaultcord.com/blacks \
--header 'Authorization: Bearer <token>'
{
"success": true,
"data": [
{
"id": 933,
"accId": 25204,
"userid": null,
"ip": null,
"fingerprint": null,
"region": null,
"country": "DZ",
"asn": 13335,
"created_at": 1715282199
}
]
}