IOCParser
  • Introduction
  • Features
  • Contact
  • API Reference
    • Parse API
    • Status API
  • Use Cases
    • Proactive Threat Hunting
  • Extras
    • Status Page
    • Changelog
    • Buy Me a Coffee
Powered by GitBook
On this page

Was this helpful?

  1. API Reference

Status API

Check the status of IOC Parser API

Status Check

GET https://api.iocparser.com/

This endpoint allows you to check the status of IOC Parser API

{
    "status": "success",
    "data": {
        "name": "IOC Parser",
        "description": "A parsing service to translate data into intelligence",
        "version": "0.0.9"
    }
}
{
    "status": "fail",
    "data": {
        "name": "IOC Parser",
        "description": "A parsing service to translate data into intelligence",
        "version": "0.0.9"
    }
}
curl --location --request GET 'https://api.iocparser.com'
import requests

url = "https://api.iocparser.com"

payload = {}
headers= {}

response = requests.request("GET", url, headers=headers, data = payload)
print(response.text.encode('utf8'))
package main

import (
  "fmt"
  "net/http"
  "io/ioutil"
)

func main() {

  url := "https://api.iocparser.com"
  method := "GET"

  client := &http.Client {
  }
  req, err := http.NewRequest(method, url, nil)

  if err != nil {
    fmt.Println(err)
  }
  res, err := client.Do(req)
  defer res.Body.Close()
  body, err := ioutil.ReadAll(res.Body)

  fmt.Println(string(body))
}
var requestOptions = {
  method: 'GET',
  redirect: 'follow'
};

fetch("https://api.iocparser.com", requestOptions)
  .then(response => response.text())
  .then(result => console.log(result))
  .catch(error => console.log('error', error));
PreviousParse APINextProactive Threat Hunting

Last updated 5 years ago

Was this helpful?