Run a search query across Censys data.
External DocumentationTo learn more, visit the Censys documentation.

Basic Parameters

ParameterDescription
FieldsA comma-separated list of fields to include in the response. All other fields will be excluded.

For example:
* host, web
* web.endpoints
* cert

For a complete list of all available fields, please visit the Censys docs.
QueryThe CenQL query string to search by.

For example: host.services.port=21 or host.services.protocol=FTP

For more information about Censys query syntax, see the Censys documentation.

Advanced Parameters

ParameterDescription
Page SizeThe amount of results to return per page.
Page TokenA page token for the requested page of search results.

The page token can be obtained from the next_page_token or previous_page_token fields in the response json.

Example Output

{
	"result": {
		"hits": [
			{
				"certificate_v1": {},
				"host_v1": {},
				"webproperty_v1": {}
			}
		],
		"next_page_token": "string",
		"previous_page_token": "string",
		"query_duration_millis": 0,
		"total_hits": 0
	}
}

Workflow Library Example

Run Search with Censys and Send Results Via Email
Workflow LibraryPreview this Workflow on desktop