GET

Retrieve data from the server with a GET request. This section covers all endpoints that allow you to fetch data or any related resources.

Versions

Current

GET /api/versions/current

Returns the current versions of Roblox

Example

Request.ts
import Axios from 'axios';

const Response = await Axios.get('https://whichexploitsare.online/api/versions/current');

console.log('Current Roblox Versions:', Response.data);

Response

{
  "Windows": {
    "Version": "version-bef193a8f3d14d3c",
    "Date": "3/17/2025 4:04:55 PM"
  },
  "Macintosh": {
    "Version": "version-0b638b32e4ac485c",
    "Date": "3/17/2025 4:04:32 PM"
  }
}

Future

GET /api/versions/future

Returns the future versions of Roblox

Example

Request.ts
import Axios from 'axios';

const Response = await Axios.get('https://whichexploitsare.online/api/versions/future');

console.log('Future Roblox Versions:', Response.data);

Response

{
  "Windows": {
    "Version": "version-bef193a8f3d14d3c",
    "Date": "3/17/2025 4:04:55 PM"
  },
  "Macintosh": {
    "Version": "version-0b638b32e4ac485c",
    "Date": "3/17/2025 4:04:32 PM"
  }
}

Exploits

GET /api/exploits

Returns the data for all exploits found in the website

Example

Request.ts
import Axios from 'axios';

const Response = await Axios.get('https://whichexploitsare.online/api/exploits');

console.log('Exploits:', Response.data);

Response

{
  "Matcha": {
    "Identifier": "oSfuOFcNkI",
    "Categories": [
      {
        "Name": "AIMBOT",
        "Description": "Designed to automatically aim and shoot at targets"
      },
      {
        "Name": "KERNEL",
        "Description": "Operates at the kernel level"
      }
    ],
    "Cost": {
      "Windows": "$10"
    },
    "Visibility": {
      "Website": {
        "Windows": true
      },
      "Search": {
        "Windows": true
      }
    },
    "Links": {
      "Windows": {
        "Discord": "https://discord.gg/8aQmChAUgc",
        "Website": "https://discord.gg/8aQmChAUgc",
        "Purchase": "https://discord.gg/8aQmChAUgc"
      }
    },
    "Platforms": {
      "Windows": {
        "Detection": {
          "Raw": 1,
          "Readable": "Undetected"
        },
        "Versions": {
          "Software": "1.1.4",
          "Roblox": "version-bef193a8f3d14d3c"
        }
      }
    },
    "Update": {
      "Platforms": {
        "Windows": {
          "Raw": true,
          "Timestamp": "2025-03-22T14:43:20.574Z"
        }
      }
    }
  },
  "Photon": {
    "Identifier": "oiZ6oHo3Ey",
    "Categories": [
      {
        "Name": "AIMBOT",
        "Description": "Designed to automatically aim and shoot at targets"
      },
      {
        "Name": "KERNEL",
        "Description": "Operates at the kernel level"
      }
    ],
    "Cost": {
      "Windows": "€20"
    },
    "Visibility": {
      "Website": {
        "Windows": true
      },
      "Search": {
        "Windows": true
      }
    },
    "Links": {
      "Windows": {
        "Discord": "https://discord.gg/vro",
        "Website": "https://discord.gg/vro",
        "Purchase": "https://photonsys.sellpass.io/"
      }
    },
    "Platforms": {
      "Windows": {
        "Detection": {
          "Raw": 1,
          "Readable": "Undetected"
        },
        "Versions": {
          "Software": "4.6",
          "Roblox": "version-bef193a8f3d14d3c"
        }
      }
    },
    "Update": {
      "Platforms": {
        "Windows": {
          "Raw": true,
          "Timestamp": "2025-03-22T23:51:04.517Z"
        }
      }
    }
  }
}

Last updated