One Day Sec

Can I export search results from the Shodan website and process them locally?

Yes. On the Shodan website, you can export results in JSON format using one Export credit per query (max 10,000 results). After downloading the JSON file, parse it with Python code such as `json.loads(line)` to extract fields like `ip_str` and `port`. For example, you can filter exports by country code using `data["location"]["country_code"]`, similar to techniques shown in the Zimbra SOAP API Development Guide.
Shodan exportJSON exportShodan websiteexport creditsJSON parsingfilter by country

Browse all Q&A →