Skip to main content
GET
/
stats
/
pulls
cURL
curl --request GET \
  --url https://api.vaultcord.com/stats/pulls \
  --header 'Authorization: Bearer <token>'
import requests

url = "https://api.vaultcord.com/stats/pulls"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://api.vaultcord.com/stats/pulls', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://api.vaultcord.com/stats/pulls",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://api.vaultcord.com/stats/pulls"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("Authorization", "Bearer <token>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://api.vaultcord.com/stats/pulls")
.header("Authorization", "Bearer <token>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.vaultcord.com/stats/pulls")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'

response = http.request(request)
puts response.read_body
{
  "success": true,
  "data": [
    {
      "id": 9287,
      "serverId": 38309,
      "accId": 2,
      "startTime": "2025-09-26 11:16:24",
      "totalTime": "00:00:01",
      "successCount": 1,
      "bannedCount": 0,
      "tooManyGuildsCount": 0,
      "invalidTokenCount": 1,
      "alreadyHereCount": 0,
      "failedCount": 0,
      "totalCount": 2,
      "message": null,
      "fileName": "acc-2-server-38309-1758885383-87-4351-a4ab-4543656a31f0.txt",
      "serverName": "RestoreBot Services 26",
      "pic": "https://cdn.vaultcord.com/logo.png"
    },
    {
      "id": 2783,
      "serverId": 18499,
      "accId": 2,
      "startTime": "2024-10-07 17:37:39",
      "totalTime": "00:00:04",
      "successCount": 3,
      "bannedCount": 0,
      "tooManyGuildsCount": 0,
      "invalidTokenCount": 0,
      "alreadyHereCount": 0,
      "failedCount": 6,
      "totalCount": 3,
      "message": null,
      "fileName": null,
      "serverName": "Imported Tokens",
      "pic": "https://cdn.vaultcord.com/logo.png"
    }
  ]
}
{
"success": false,
"message": "New login required #2"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Server activity logs and statistics

success
boolean
Example:

true

data
object[]
Example:
[
{
"id": 9287,
"serverId": 38309,
"accId": 2,
"startTime": "2025-09-26 11:16:24",
"totalTime": "00:00:01",
"successCount": 1,
"bannedCount": 0,
"tooManyGuildsCount": 0,
"invalidTokenCount": 1,
"alreadyHereCount": 0,
"failedCount": 0,
"totalCount": 2,
"message": null,
"fileName": "acc-2-server-38309-1758885383-87-4351-a4ab-4543656a31f0.txt",
"serverName": "RestoreBot Services 26",
"pic": "https://cdn.vaultcord.com/logo.png"
},
{
"id": 2783,
"serverId": 18499,
"accId": 2,
"startTime": "2024-10-07 17:37:39",
"totalTime": "00:00:04",
"successCount": 3,
"bannedCount": 0,
"tooManyGuildsCount": 0,
"invalidTokenCount": 0,
"alreadyHereCount": 0,
"failedCount": 6,
"totalCount": 3,
"message": null,
"fileName": null,
"serverName": "Imported Tokens",
"pic": "https://cdn.vaultcord.com/logo.png"
}
]