Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
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
}
]
}
List the allowlists on a VaultCord account
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
}
]
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Was this page helpful?