Overview
API Concepts Manage API Key
Internet Data
DNSIQ® WHOISIQ™ SSL Certificates Blacklist Lookup Host Attributes
Attack Analytics
Newly Observed Domains Newly Observed Hosts Malware Phishing Scam Content
Digital Footprint
Global Inventory API Global Inventory Schema Risk Metric Schema Workspace Management API
Coming Soon
Enrich
PassiveTotal
Getting Started Actions Artifact Articles Attack Surface Intelligence Intel Profiles Data Card Enrichment Services Monitor Project SSL Certificates Tag Artifact Trackers Host Attributes Cookies Components Passive DNS Whois Bulk Enrichment Reputation Vulnerability Intelligence
RiskIQ.com

Components

The components endpoints allow you to search components hosts and addresses information.

 

What It Looks Like

Get addresses by component name

Searches the components addresses information by component name.

Curl Example

$ curl -u $USERNAME:$KEY 'https://api.riskiq.net/pt/v2/components/apache/addresses'
# With url parameters
$ curl -u $USERNAME:$KEY 'https://api.riskiq.net/pt/v2/components/apache/addresses?sort=firstSeen&order=asc'

Response

{
  "totalRecords": 1000,
  "success": true,
  "results": [
    {
        "firstSeen": "2020-03-12 18:06:39",
        "lastSeen": "2020-08-16 06:57:37",
        "version": null,
        "category": "Server",
        "label": "Apache",
        "address": "199.34.228.53"
    },
    ...
    {
        "firstSeen": "2020-01-16 17:59:03",
        "lastSeen": "2020-08-15 06:04:32",
        "version": null,
        "category": "Server",
        "label": "Apache",
        "address": "13.225.228.9"
    }
  ]
}
			

Get hosts by component name

Searches the components hosts information by component name.

Curl Example

$ curl -u $USERNAME:$KEY 'https://api.riskiq.net/pt/v2/components/apache/hosts'
# With url parameters
$ curl -u $USERNAME:$KEY 'https://api.riskiq.net/pt/v2/components/apache/hosts?sort=firstSeen&order=asc'

Response

{
  "totalRecords": 1773,
  "success": true,
  "results": [
    {
        "firstSeen": "2020-03-12 18:06:39",
        "lastSeen": "2020-08-16 06:57:37",
        "version": null,
        "category": "Server",
        "label": "Apache",
        "hostname": "vip.resultspage.com"
    },
    ...
    {
        "firstSeen": "2020-01-16 17:59:03",
        "lastSeen": "2020-08-15 06:04:32",
        "version": null,
        "category": "Server",
        "label": "Apache",
        "hostname": "www.s-b-c-dental.com"
    }
  ]
}