Products Status

327 Views 0 0 Last Updated: May 16, 2026

Cheat Status SDK

Official Integration Guide for Fikit Cheats. Secure, fast, and real-time data.

 

General Configuration

  • Base URL: https://fikitcheats.com/sdk
  • HTTP Method: POST is required for all endpoints.
  • Rate Limiting: 30 requests / minute per IP address.
  • Content-Type: application/json

 

Parameter Definitions

Definitions provided by the API at meta.definitions:

is_paused When TRUE, the product is completely locked by the developer. It cannot be used regardless of other flags.

is_open When TRUE, the product is available to the public. Management of usage depends on the current security status.

Available Status Values:

Undetected Secure to use. No known issues.

Updating Devs are working on a game update. Not injectable.

Detected Compromised or outdated. DO NOT USE.

Testing Post-update inner circle testing state.

 

Endpoint: Get All Products

Returns a collection of all active products, versions, and full gallery assets.

POST /sdk/cheats/status

full_response.json

{
    "success": true,
    "data": [
        {
            "name": "RDR2 ONLINE FIKIT",
            "is_open": true,
            "is_paused": false,
            "status": "Undetected",
            "version": "1.2.0",
            "gallery": {
                "images": ["https://fikitcheats.com/storage/..."],
                "videos": [
                    {
                        "title": "Demo",
                        "url": "https://...",
                        "thumbnail": "https://..."
                    }
                ]
            }
        }
    ],
    "meta": {
        "definitions": {
            "is_paused": "Developer hard-lock state.",
            "is_open": "Public availability state.",
            "status_values": { ... }
        }
    }
}

Endpoint: Get Specific Product

Retrieves a single object. The identifier can be passed in the URL or the POST Body.

POST /sdk/cheats/status/{product_name}

Body Parameter (Alternative):

{ "name": "GTAV FIKIT" }

 

HTTP Error Reference

  • 400 Bad Request - Missing name parameter in body or URL.
  • 404 Not Found - Product name did not match any in our records.
  • 429 Too Many Requests - Your IP has exceeded the allowed 30 req/min limit.

Was this article helpful?