Pulse_Intel

Integration Examples

These examples show how to consume Pulse Intelligence data from analyst tools and SOAR automation. Everything calls the public API with a scoped key and exports indicators into common analyst workflows.

Prerequisites

Python

examples/python/export_indicators.py — CSV export

Downloads the JSON view of /api/v1/indicators and writes a CSV to stdout.

set PULSE_BASE_URL=https://your-pulse-host.example
set PULSE_API_KEY=pulse_your_key
python examples/python/export_indicators.py --severity HIGH > high-indicators.csv

examples/python/export_stix.py — STIX 2.1 bundle export

Fetches GET /api/v1/indicators?format=stix and writes the STIX 2.1 bundle to a file. The response is validated against the STIX bundle shape before anything is written.

python examples/python/export_stix.py --severity HIGH -o pulse-indicators.stix.json

cURL

examples/curl/export_indicators.sh — raw format downloads

One-liner downloads for any export format the API supports (csv, stix, misp, snort, json). Non-JSON formats are full-set exports capped at 50,000 rows server-side; json is paginated at 100 rows per page.

bash examples/curl/export_indicators.sh csv  > pulse-indicators.csv
bash examples/curl/export_indicators.sh stix > pulse-indicators.stix.json

Splunk

examples/splunk/pulse_indicator_lookup.spl is a lookup-oriented SPL starter query for normalized Pulse indicator exports.

Microsoft Sentinel

examples/sentinel/pulse_high_confidence_iocs.kql is a KQL starter query for high-confidence network and hash indicators after importing Pulse data into a PulseIndicators table.

Verification Notes