> For the complete documentation index, see [llms.txt](https://docs.stormss.cc/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.stormss.cc/developers/public-reference/results.md).

# Results

## Checking A Users Scan History

<mark style="color:green;">`POST`</mark> `https://stormss.cc/api/results/`

Gets The Previous Pins A User Has Been Scanned With

**Headers**

| Name         | Value              |
| ------------ | ------------------ |
| Content-Type | `application/json` |

**Query**

| Name | Type   | Description |
| ---- | ------ | ----------- |
| PIN  | string | Scan PIN    |

**Response**

{% tabs %}
{% tab title="200" %}

```json
{
  "PIN": "432432",
  "game": "FiveM",
  "results": {
    "accounts": [
      {
        "id": "76561199058407058",
        "name": "qimouzaixianbaonitou"
      },
      {
        "id": "76561199431229939",
        "name": "7r7q8ex11vin"
      }
    ],
    "detects": [
      "Unsigned File: main.exe",
      "Unsigned File: filesscannermain.exe",
      "Journal Deleted: 02:00:06, 23.05.2024",
      "Journal Deleted: 02:00:04, 23.05.2024",
      "Task Scheduler: 07:39:03, 24.05.2024",
      "Journal Deleted: 19:03:15, 01.05.2024",
      "Journal Deleted: 18:14:07, 01.05.2024",
      "Journal Deleted: 22:33:49, 29.04.2024",
      "Eulen",
      "Testo - cheat.exe",
      "Eulen - loader_prod.exe",
      "Generic Bypass (Transacted Hollowing) - main.cpp",
      "Macho Cheats - readme.txt",
      "Keyauth - $RS4F2JC.py",
      "Journal Deletion - $RS4F2JC.py",
    ],
    "logs": [
      "Generic A [Regedit] - OpenSavePidlMRU",
      "Memory Integrity Disabled",
      "Files With UniCode Characters",
      "Recycle-Bin Modified: 2d, 9m, 43s ago",
    ],
    "warnings": [
      "Unable To Find FiveM.APP!",
      "Discord: Tiago Executor",
      "Discord: Elude Bypass",
    ]
  }
}
```

{% endtab %}

{% tab title="400" %}

```json
{
  "error": "Invalid request"
}
```

{% endtab %}
{% endtabs %}
