// FIVEM TRACKER · DEVELOPER PORTAL

Developer Portal

Integrate global security intelligence into your FiveM ecosystem.

Official Node.js SDK Recommended
Fastest Integration Path

Stop writing manual HTTP requests. Our official SDK handles authentication, error catching, and data formatting out of the box.

npm install fivem-tracker-system
Basic Implementation (CommonJS)
const FiveMTracker = require('fivem-tracker-system');
const tracker = new FiveMTracker('ft_live_your_key');

// Wrap inside an async IIFE to prevent top-level await errors
(async () => {
    try {
        const result = await tracker.checkPlayer('DISCORD_ID');
        
        if (result.success) {
            console.log(result.data.status);  // blacklisted | clear
            console.log(result.data.history); // Array of past offenses
        }
    } catch (error) {
        console.error("API Fetch Error:", error);
    }
})();
Why Use the SDK?
  • Automatic retries on network blips
  • Native TypeScript support
  • Unified error objects (401, 402, 429)
  • Optimized for FiveM Bot environments
REST API Reference
GET /api/v1/check/:discordId

Fetch global records for a specific Discord User ID.

Authentication Header
x-api-key: ft_live_your_token_here
Example cURL
curl -L "https://fivem-tracker.online/api/v1/check/ID" \
     -H "x-api-key: YOUR_KEY"
Status Codes
CodeMeaning
200Success
401Invalid API Key
402Plan Expired
429Rate Limited
500Maintenance
Integration Specialist Needed?

Join our Discord and our team will help you bind the tracker to your specific server scripts or bot.

Contact Technical Support