Documentation

Introduction

This is the introduction for the API.

Welcome to Sentinel Checker documentation. Sentinel Checker is a multifunctional program designed to enhance player verification processes. It provides comprehensive tools for moderators and administrators to ensure fair gameplay on your servers.

Base URL

url
https://api.SentinelChecker.net/v1/

Temporary Tokens

Get All Temporary Tokens

GET/temps?token=YOUR_API_TOKEN

Returns a list of all temporary tokens.

Parameters

tokenstringRequiredYour API token

Example Response

json
{
  "status": "success",
  "tokens": [
    { 
      "id": 1,
      "tempToken": "471739244f81853c2a03857f71e64f",
      "duration": 3600,
      "created at": "2024-02-14 12:00:56"
    },
    {
      "id": 2,
      "tempToken": "f0ad2231e4261401a23b1e54ae72b4",
      "duration": 3600,
      "created at": "2024-02-14 12:05:23"
    }
  ]
}

Generate Temporary Token

GET/temp?token=YOUR_API_TOKEN&duration=3600

Generates a new temporary token with specified duration.

Parameters

tokenstringRequiredYour API token
durationintegerOptionalDuration in seconds (default: 3600)

Example Response

json
{
  "status": "success",
  "tempToken": "a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5",
  "duration": 3600,
  "created at": "2024-02-14 12:10:00"
}

Expire

Panel Expire

GET/panelexp?token=YOUR_API_TOKEN

Returns the panel expiration date.

Parameters

tokenstringRequiredYour API token

Example Response

json
{
  "status": "success",
  "expire": "2024-02-29 11:52:16"
}