Shodan · Schema

Shodan On-Demand Scan

A Shodan on-demand scan submission and its current status.

SecuritySearchInternetDevicesIoTVulnerabilitiesCVEAttack SurfaceThreat IntelligenceReconnaissanceNetworkDNSScanningPublic APIs

Properties

Name Type Description
id string
count integer Number of IPs in the scan.
credits_left integer
status string
created string
View JSON Schema on GitHub

JSON Schema

shodan-rest-scan-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://github.com/api-evangelist/shodan/json-schema/shodan-rest-scan-schema.json",
  "title": "Shodan On-Demand Scan",
  "description": "A Shodan on-demand scan submission and its current status.",
  "type": "object",
  "required": ["id", "status"],
  "properties": {
    "id": { "type": "string" },
    "count": { "type": "integer", "description": "Number of IPs in the scan." },
    "credits_left": { "type": "integer" },
    "status": { "type": "string", "enum": ["SUBMITTING", "QUEUE", "PROCESSING", "DONE"] },
    "created": { "type": "string", "format": "date-time" }
  }
}