Storm Scanner
  • 👋Welcome to Storm Scanner
  • Fundamentals
    • 🛠️Getting set up
      • 📚Generating PINS and Downloading the Scanner
        • 🖥️Generating and Viewing on the Dashboard
        • 📝Generating and Viewing on Discord
        • 🕵️Toggling Public and Private Scans
      • 🔗Custom Webhook
      • 🔘Scan Toggles
    • 🔍Custom Strings
      • 💻Adding and Removing Processes
      • 📜Adding Custom Strings
      • 👤Extracting your Own Strings
      • 🔎Searching and Removing Custom Strings
    • 💻Custom Yara
      • 📜Information on Rules
      • ✏️Basic Rule Examples
  • 🛠️Developers
    • Public Reference
      • User Scan History
      • Results
    • Enterprise Reference
      • Generate A Scan Pin
      • Remove Enterprise User
  • ⁉️Troubleshooting
    • ❌False Detections
    • 📔Error: Possible Bypass Attempt
    • 🔧Storm Not Scanning
Powered by GitBook
On this page
  1. Developers
  2. Public Reference

User Scan History

Checking A Users Scan History

POST https://stormss.cc/api/history/

Gets The Previous Pins A User Has Been Scanned With

Headers

Name
Value

Content-Type

application/json

Query

Name
Type
Description

DISCORD_ID

string

Discord User ID

Response

{
  "pins": [
    {
      "link": "https://stormss.cc/results/9989418",
      "pin": 9989418
    },
    {
      "link": "https://stormss.cc/results/3824628",
      "pin": 3824628
    },
    {
      "link": "https://stormss.cc/results/6225752",
      "pin": 6225752
    },
    {
      "link": "https://stormss.cc/results/5353718",
      "pin": 5353718
    },
    {
      "link": "https://stormss.cc/results/928973",
      "pin": 928973
    }
  ]
}
{
  "error": "Invalid request"
}
PreviousPublic ReferenceNextResults

Last updated 11 months ago

🛠️