![]() |
IP檢測服務(wù)-apivoid
專用API
【更新時間: 2024.07.11】
APIVoid 提供可用于網(wǎng)絡(luò)威脅分析、威脅檢測和威脅防御的 JSON API, 減少安全分析師的手動工作并實現(xiàn)自動化。 使用我們的 API,您可以識別惡意 IP 地址,獲取網(wǎng)站的聲譽(yù),獲取SSL證書詳細(xì)信息,執(zhí)行...
1000積分/12美元
去服務(wù)商官網(wǎng)采購>
|
瀏覽次數(shù)
42
采購人數(shù)
0
試用次數(shù)
1
試用
收藏
×
完成
取消
×
書簽名稱
確定
|
- API詳情
- 定價
- 使用指南
- 常見 FAQ
- 關(guān)于我們
- 相關(guān)推薦


什么是apivoid的IP檢測服務(wù)?
威脅分析 API APIVoid 提供可用于網(wǎng)絡(luò)威脅分析、威脅檢測和威脅防御的 JSON API, 減少安全分析師的手動工作并實現(xiàn)自動化。 使用我們的 API,您可以識別惡意 IP 地址,獲取網(wǎng)站的聲譽(yù),獲取SSL證書詳細(xì)信息,執(zhí)行DNS記錄查找還有更多!我們的威脅情報 API 組合可以幫助組織和 SOC 團(tuán)隊改進(jìn)網(wǎng)絡(luò)威脅風(fēng)險檢測和欺詐預(yù)防。 |
什么是apivoid的IP檢測服務(wù)接口?
apivoid的IP檢測服務(wù)有哪些核心功能?
|
||
IP 信譽(yù)檢查 使用多個 IP 黑名單服務(wù)檢查 IP 地址的信譽(yù)。 |
域名信譽(yù)檢查 使用多個域名黑名單服務(wù)檢查域名的信譽(yù)。 |
URL 信譽(yù)檢查 使用唯一的 URL 安全檢查獲取 URL 的聲譽(yù)和風(fēng)險評分。 |
驗證 SPF 記錄 |
查找同一 IP 上的域 |
域名 Whois 信息 |
檢查 SPF 記錄是否有效,以及 IP 是否有權(quán)發(fā)送電子郵件。 |
查找共享相同 IP 地址的域和子域的列表。 |
獲取域名注冊商、濫用電子郵件、所有者組織、所有者國家/地區(qū)等。 |
apivoid的IP檢測服務(wù)的核心優(yōu)勢是什么?
多種 API 服務(wù) 您可以在一個用戶帳戶中使用我們所有可用的 API 服務(wù)。在我們的 API 服務(wù)中,您可以找到 IP 信譽(yù) API、域信譽(yù) API、DNS 查找 API、ThreatLog API、電子郵件驗證 API 和 SSL 信息 API。 |
|
|
獨特功能 |
全球 API 積分 |
|
|
IP 白名單 |
在哪些場景會用到apivoid的IP檢測服務(wù)?
1.網(wǎng)絡(luò)安全方面:阻止 99%的網(wǎng)絡(luò)釣魚攻擊其他電子郵件安全解決方案。
2.網(wǎng)絡(luò)運營方面:進(jìn)行威脅情報運營和網(wǎng)絡(luò)風(fēng)險量化
3.網(wǎng)絡(luò)延遲測試:服務(wù)器進(jìn)行IP測試可以檢測到網(wǎng)絡(luò)延遲情況。通過向目標(biāo)服務(wù)器發(fā)送數(shù)據(jù)包,計算數(shù)據(jù)包從發(fā)送到接收的時間差,可以得到網(wǎng)絡(luò)延遲即延時(Latency)的數(shù)值。延遲測試對于在線游戲、實時通信等對網(wǎng)絡(luò)延遲要求較高的應(yīng)用非常重要,可以評估網(wǎng)絡(luò)的穩(wěn)定性和響應(yīng)時間,提供最佳的用戶體驗。
4.IP地址解析:服務(wù)器進(jìn)行IP測試可以進(jìn)行IP地址解析。通過將域名轉(zhuǎn)換為對應(yīng)的IP地址,可以驗證域名解析是否正常。這對于網(wǎng)站運營商來說非常重要,可以幫助他們及時發(fā)現(xiàn)域名解析故障,保證網(wǎng)站的正常運行,并及時進(jìn)行處理。


積分定價:
估計的 API 查詢:


威脅日志 API:
API 請求示例
您可以通過 HTTP GET 請求查詢 API 端點:
curl "https://endpoint.apivoid.com/threatlog/v1/pay-as-you-go/?key=YOUR_API_KEY_HERE&host=google.com"
下面是使用 PHP 的 API 請求示例:
$host = "google.com";
$apivoid_key = "YOUR_API_KEY_HERE";
$curl = curl_init("https://endpoint.apivoid.com/threatlog/v1/pay-as-you-go/?key=".$apivoid_key."&host=".$host);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
$output = curl_exec($curl);
curl_close($curl);
$json = json_decode($output, true);
print_r($json);
改寫YOUR_API_KEY_HERE使用您的 API 密鑰。
API 響應(yīng)示例
API 響應(yīng)采用干凈的 JSON 格式:
{
"data":{
"host":"google.com",
"threatlog":{
"detected":false,
"reference":"http:\/\/www.threatlog.com\/",
"scantime":"0.00"
}
},
"credits_remained":93934.47,
"estimated_queries":"1,878,689",
"elapsed_time":"0.10",
"success":true
}
在這里,您可以找到重要的 JSON 字段:
域信譽(yù) API:
API 請求示例:
您可以通過 HTTP GET 請求查詢 API 端點:
curl "https://endpoint.apivoid.com/domainbl/v1/pay-as-you-go/?key=YOUR_API_KEY_HERE&host=google.com"
下面是使用 PHP 的 API 請求示例:
$host = "google.com";
$apivoid_key = "YOUR_API_KEY_HERE";
$curl = curl_init("https://endpoint.apivoid.com/domainbl/v1/pay-as-you-go/?key=".$apivoid_key."&host=".$host);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
$output = curl_exec($curl);
curl_close($curl);
$json = json_decode($output, true);
print_r($json);
改寫YOUR_API_KEY_HERE使用您的 API 密鑰。
API 響應(yīng)示例
API 響應(yīng)采用干凈的 JSON 格式:
{
"data": {
"report": {
"host": "amazon.com",
"blacklists": {
"engines": {
"0": {
"engine": "Phishing Test",
"detected": false,
"reference": "https://www.novirusthanks.org/",
"confidence": "low",
"elapsed": "0.00"
},
"1": {
"engine": "Scam Test",
"detected": false,
"reference": "https://www.novirusthanks.org/",
"confidence": "low",
"elapsed": "0.00"
},
"2": {
"engine": "Sinkholed Domain",
"detected": false,
"reference": "https://www.novirusthanks.org/",
"confidence": "low",
"elapsed": "0.00"
},
},
"detections": 0,
"engines_count": 50,
"detection_rate": "0%",
"scantime": "0.21"
},
"server": {
"ip": "205.251.242.103",
"reverse_dns": "s3-console-us-standard.console.aws.amazon.com",
"continent_code": "NA",
"continent_name": "North America",
"country_code": "US",
"country_name": "United States of America",
"region_name": "Virginia",
"city_name": "Ashburn",
"latitude": 39.04372024536133,
"longitude": -77.48748779296875,
"isp": "Amazon.com Inc.",
"asn": "AS16509"
},
"category": {
"is_free_hosting": false,
"is_anonymizer": false,
"is_url_shortener": false,
"is_free_dynamic_dns": false,
"is_code_sandbox": false,
"is_form_builder": false,
"is_free_file_sharing": false,
"is_pastebin": false
},
"security_checks": {
"is_most_abused_tld": false,
"is_domain_ipv4_assigned": true,
"is_domain_ipv4_private": false,
"is_domain_ipv4_loopback": false,
"is_domain_ipv4_reserved": false,
"is_domain_ipv4_valid": true,
"is_domain_blacklisted": false,
"is_uncommon_host_length": false,
"is_uncommon_dash_char_count": false,
"is_uncommon_dot_char_count": false,
"website_popularity": "high",
"is_uncommon_clickable_domain": false,
"is_risky_category": false
},
"risk_score": {
"result": 0
}
}
},
"credits_remained": 96535.6,
"estimated_queries": "1,206,695",
"elapsed_time": "0.60",
"success": true
}




你有個好伙伴
我們的 API 被初創(chuàng)公司、中小型企業(yè) (SMB)、大型企業(yè)、安全運營中心 (SOC) 和金融機(jī)構(gòu)使用。 通過集成我們的威脅情報 API,您可以改進(jìn)威脅檢測和威脅分析。 以下是一些正在使用我們服務(wù)的公司:


積分定價:
估計的 API 查詢:


威脅日志 API:
API 請求示例
您可以通過 HTTP GET 請求查詢 API 端點:
curl "https://endpoint.apivoid.com/threatlog/v1/pay-as-you-go/?key=YOUR_API_KEY_HERE&host=google.com"
下面是使用 PHP 的 API 請求示例:
$host = "google.com";
$apivoid_key = "YOUR_API_KEY_HERE";
$curl = curl_init("https://endpoint.apivoid.com/threatlog/v1/pay-as-you-go/?key=".$apivoid_key."&host=".$host);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
$output = curl_exec($curl);
curl_close($curl);
$json = json_decode($output, true);
print_r($json);
改寫YOUR_API_KEY_HERE使用您的 API 密鑰。
API 響應(yīng)示例
API 響應(yīng)采用干凈的 JSON 格式:
{
"data":{
"host":"google.com",
"threatlog":{
"detected":false,
"reference":"http:\/\/www.threatlog.com\/",
"scantime":"0.00"
}
},
"credits_remained":93934.47,
"estimated_queries":"1,878,689",
"elapsed_time":"0.10",
"success":true
}
在這里,您可以找到重要的 JSON 字段:
域信譽(yù) API:
API 請求示例:
您可以通過 HTTP GET 請求查詢 API 端點:
curl "https://endpoint.apivoid.com/domainbl/v1/pay-as-you-go/?key=YOUR_API_KEY_HERE&host=google.com"
下面是使用 PHP 的 API 請求示例:
$host = "google.com";
$apivoid_key = "YOUR_API_KEY_HERE";
$curl = curl_init("https://endpoint.apivoid.com/domainbl/v1/pay-as-you-go/?key=".$apivoid_key."&host=".$host);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
$output = curl_exec($curl);
curl_close($curl);
$json = json_decode($output, true);
print_r($json);
改寫YOUR_API_KEY_HERE使用您的 API 密鑰。
API 響應(yīng)示例
API 響應(yīng)采用干凈的 JSON 格式:
{
"data": {
"report": {
"host": "amazon.com",
"blacklists": {
"engines": {
"0": {
"engine": "Phishing Test",
"detected": false,
"reference": "https://www.novirusthanks.org/",
"confidence": "low",
"elapsed": "0.00"
},
"1": {
"engine": "Scam Test",
"detected": false,
"reference": "https://www.novirusthanks.org/",
"confidence": "low",
"elapsed": "0.00"
},
"2": {
"engine": "Sinkholed Domain",
"detected": false,
"reference": "https://www.novirusthanks.org/",
"confidence": "low",
"elapsed": "0.00"
},
},
"detections": 0,
"engines_count": 50,
"detection_rate": "0%",
"scantime": "0.21"
},
"server": {
"ip": "205.251.242.103",
"reverse_dns": "s3-console-us-standard.console.aws.amazon.com",
"continent_code": "NA",
"continent_name": "North America",
"country_code": "US",
"country_name": "United States of America",
"region_name": "Virginia",
"city_name": "Ashburn",
"latitude": 39.04372024536133,
"longitude": -77.48748779296875,
"isp": "Amazon.com Inc.",
"asn": "AS16509"
},
"category": {
"is_free_hosting": false,
"is_anonymizer": false,
"is_url_shortener": false,
"is_free_dynamic_dns": false,
"is_code_sandbox": false,
"is_form_builder": false,
"is_free_file_sharing": false,
"is_pastebin": false
},
"security_checks": {
"is_most_abused_tld": false,
"is_domain_ipv4_assigned": true,
"is_domain_ipv4_private": false,
"is_domain_ipv4_loopback": false,
"is_domain_ipv4_reserved": false,
"is_domain_ipv4_valid": true,
"is_domain_blacklisted": false,
"is_uncommon_host_length": false,
"is_uncommon_dash_char_count": false,
"is_uncommon_dot_char_count": false,
"website_popularity": "high",
"is_uncommon_clickable_domain": false,
"is_risky_category": false
},
"risk_score": {
"result": 0
}
}
},
"credits_remained": 96535.6,
"estimated_queries": "1,206,695",
"elapsed_time": "0.60",
"success": true
}






你有個好伙伴
我們的 API 被初創(chuàng)公司、中小型企業(yè) (SMB)、大型企業(yè)、安全運營中心 (SOC) 和金融機(jī)構(gòu)使用。 通過集成我們的威脅情報 API,您可以改進(jìn)威脅檢測和威脅分析。 以下是一些正在使用我們服務(wù)的公司: