CensysEx.Hosts.search

You're seeing just the function search, go back to CensysEx.Hosts module for more information.
Link to this function

search(query \\ "", per_page \\ 100)

View Source

Hits the Censys Hosts search API. Returns a stream of results for your query

Examples

CensysEx.Hosts.search("same_service(service_name: SSH and not port: 22)")
|> Stream.take(25)
|> Stream.map(&Map.get(&1, "ip"))
|> Enum.to_list()
["10.0.0.6", "10.2.0.1", ...]