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));