History API

Note: replace “API_KEY” with actual user’s API Key, which can be found in Profile Information page of Bolster Platform)

POST /api/neo/v1/playbook

  • apiKey user API key

Sample Usage

curl -X POST -H 'Content-Type: application/json' \
-d '{"apiKey": "API_KEY"}' \
https://developers.bolster.ai/api/neo/v1/playbook
{
  "schedules": [
    {
      "id": 1234,
      "name": "Sample Playbook",
      "history": [
        {
          "id": 7890,
          "resultCount": 3,
          "status": "COMPLETE",
          "createdTs": "2022-07-11T21:36:44.047Z",
          "updatedTs": "2022-07-11T21:36:45.445Z"
        },
        {
          "id": 5678,
          "resultCount": 7,
          "status": "COMPLETE",
          "createdTs": "2022-01-11T20:58:56.824Z",
          "updatedTs": "2022-01-11T20:58:59.324Z"
        }
      ]
    }
  ]
}

Results API

Note: Playbook results expire and will no longer be available for download after 7 days

Note: replace “API_KEY” with actual user’s API Key, which can be found in Profile Information page of Bolster Platform)

POST /api/neo/v1/playbook/download

  • apiKey user API key
  • historyId playbook history ID

Sample Usage


curl -X POST -H 'Content-Type: application/json' \
-d '{"apiKey": "API_KEY", "historyId": 7890}' \
https://developers.bolster.ai/api/neo/v1/playbook/download
[
    {
        "Original Disposition": "phish",
        "First Seen": "2022-07-11T17:29:53.021Z",
        "Source URL": "https://bankofbolster.com/html/fish.html",
        "Hosting Provider": "eName Technology Co., Ltd.",
        "Takedown Requests": 0,
        "Logo Detected": false,
        "IP Address": "172.31.4.243",
        "Registration Date": "2016-11-03T18:10:19.000Z",
        "Category": "banking",
        "MX Records": false
    },
    {
        "Original Disposition": "scam",
        "First Seen": "2022-07-11T17:29:53.021Z",
        "Source URL": "https://zxcvasdfqwer.com/html/slam.html",
        "Hosting Provider": "GoDaddy.com, LLC",
        "Takedown Requests": 0,
        "Logo Detected": true,
        "IP Address": "172.31.4.243",
        "Registration Date": "2012-04-24T06:59:34.000Z",
        "Category": "gift_card",
        "MX Records": false
    },
    {
        "Original Disposition": "phish",
        "First Seen": "2022-07-11T17:29:53.021Z",
        "Source URL": "https://zxcvasdfqwer.com/html/slam.html#1639004277187",
        "Hosting Provider": "OVH",
        "Takedown Requests": 0,
        "Logo Detected": true,
        "IP Address": "172.31.4.243",
        "Registration Date": "2012-04-24T06:59:34.000Z",
        "Category": "unknown",
        "MX Records": false
    }
]