Censys · JSON Structure

Platform Searchqueryresponse Structure

SearchQueryResponse schema from Censys Platform API

Type: object Properties: 5 Required: 5
SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery

SearchQueryResponse is a JSON Structure definition published by Censys, describing 5 properties, of which 5 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

hits next_page_token previous_page_token query_duration_millis total_hits

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/censys/refs/heads/main/json-structure/platform-searchqueryresponse-structure.json",
  "name": "SearchQueryResponse",
  "description": "SearchQueryResponse schema from Censys Platform API",
  "type": "object",
  "required": [
    "total_hits",
    "next_page_token",
    "previous_page_token",
    "query_duration_millis",
    "hits"
  ],
  "additionalProperties": false,
  "properties": {
    "hits": {
      "type": [
        "array",
        "null"
      ],
      "items": {
        "$ref": "#/components/schemas/SearchQueryHit"
      }
    },
    "next_page_token": {
      "type": "string"
    },
    "previous_page_token": {
      "type": "string"
    },
    "query_duration_millis": {
      "type": "int32"
    },
    "total_hits": {
      "type": "double"
    }
  }
}