APIs
...
Detected API
Profiles
View a profile domain
code examples curl location globoff 'https //profile backend detected app/api/v2/public/profiles/{uuid}/domain' \\ \ header 'accept application/json' \\ \ header 'content type application/json'var myheaders = new headers(); myheaders append("accept", "application/json"); myheaders append("content type", "application/json"); var requestoptions = { method 'get', headers myheaders, redirect 'follow' }; fetch("https //profile backend detected app/api/v2/public/profiles/{uuid}/domain", requestoptions) then(response => response text()) then(result => console log(result)) catch(error => console log('error', error));require "uri" require "json" require "net/http" url = uri("https //profile backend detected app/api/v2/public/profiles/{uuid}/domain") https = net http new(url host, url port) https use ssl = true request = net http get new(url) request\["accept"] = "application/json" request\["content type"] = "application/json" response = https request(request) puts response read body import requests import json url = "https //profile backend detected app/api/v2/public/profiles/{uuid}/domain" payload = {} headers = { 'accept' 'application/json', 'content type' 'application/json' } response = requests request("get", url, headers=headers, data=payload) print(response text) responses // ok { "data" { "id" "a0b7b54a d79c 458c bf79 83cf2e4d65af", "type" "", "domain" "", "whois" { "status" "ok", "age" "9 years, 7 months and 1 week", "agedays" 3505, "createdat" "2015 07 01t05 19 10z", "updatedat" "2024 04 23t09 02 40z", "expiresat" "2032 07 01t05 19 10z" }, "social" { "title" "digital trust in banking using artificial intelligence and blockchain", "description" "company helps financial institutions make their digital regulatory processes simple, secure and compliant this is achieved by providing human like fraud detection using artificial intelligence and blockchain", "responded" true, "twitter" "", "facebook" "https //www facebook com/examplecompany/", "linkedin" "https //www linkedin com/company/example com", "instagram" "" }, "online presence" \[ { "founding year" "2015", "phone number" "+1 123 456 7890", "industry" "financial services", "tags" \[ "b2b" ], "address" "one liberty plaza, 165 broadway 23rd floor, new york city, new york 10006, us" } ], "scam advisor" { "score" 100, "blacklisted" false, "dns threat markers" 0, "dns adult content markers" 0, "website title" "amazon com online shopping for electronics ", "website description" "free delivery on millions of items with prime ", "website keywords" \[ "amazon" ], "block search engines" false, "reviews" \[ { "source" "trustpilot", "source url" "https //www trustpilot com/review/amazon com", "count" 12920, "avg score" 2 2 } ], "gca domain trust" { "type" "c", "activity" "a", "provider" "scamadviser", "created at" "2021 03 24t12 00 17z", "is blocked" false, "updated at" "2022 03 03t16 21 46 565251z", "source name" "scamadviser com", "provider role" "other", "classification" 1, "external source" false, "provider rating" "c" }, "antiphishing" { "count" 0 }, "certnz" { "labels" \[ "" ], "marking" "amber" }, "maltiverse" { "tags" \[ "bokbot" ], "classification" "malicious" }, "ipqs" { "risk score" 85, "unsafe" true, "dns valid" true, "parking" false, "spamming" true, "malware" false, "phishing" false, "suspicious" true, "adult" false, "domain age" 1609459200 }, "created at" "2020 09 01 13 32 16", "updated at" "2020 10 07 08 00 11" }, "updated at" "2024 07 16 14 52 33", "created at" "2024 07 16 14 52 33" } }// unauthorized { "message" "unauthenticated " }// not found { "message" "not found" }// too many requests { "message" "too many attempts " }