-
Notifications
You must be signed in to change notification settings - Fork 130
Intelligence Feeds
Joshua Hiller edited this page May 12, 2025
·
3 revisions
Operation ID | Description | ||||
---|---|---|---|---|---|
|
Download feed file contents as a zip archive. | ||||
|
List the accessible feeds for a given customer. | ||||
|
Query the accessible feeds for a customer. |
WARNING
client_id
andclient_secret
are keyword arguments that contain your CrowdStrike API credentials. Please note that all examples below do not hard code these values. (These values are ingested as strings.)CrowdStrike does not recommend hard coding API credentials or customer identifiers within source code.
Download feed file contents as a zip archive.
download_feed
Method | Route |
---|---|
/indicator-feed/entities/feed-download/v1 |
- Produces: application/json
Name | Service | Uber | Type | Data type | Description |
---|---|---|---|---|---|
feed_item_id |
|
|
query | string | Feed object reference ID. |
parameters |
|
|
query | dictionary | Full query parameters payload as a dictionary, not required when using other keywords. |
stream |
|
|
query | boolean | Enable streaming download of the returned file. |
from falconpy import IntelligenceFeeds
# Do not hardcode API credentials!
falcon = IntelligenceFeeds(client_id=CLIENT_ID_HERE,
client_secret=CLIENT_SECRET
)
response = falcon.device_enroll(feed_item_id="string", stream=boolean)
print(response)
from falconpy import IntelligenceFeeds
# Do not hardcode API credentials!
falcon = IntelligenceFeeds(client_id=CLIENT_ID_HERE,
client_secret=CLIENT_SECRET
)
response = falcon.DownloadFeedArchive(feed_item_id="string", stream=boolean)
print(response)
from falconpy import APIHarnessV2
# Do not hardcode API credentials!
falcon = APIHarnessV2(client_id=CLIENT_ID,
client_secret=CLIENT_SECRET
)
response = falcon.command("DownloadFeedArchive", feed_item_id="string", stream=boolean)
print(response)
List the accessible feeds for a given customer.
list_feeds
Method | Route |
---|---|
/indicator-feed/entities/feed/v1 |
- Produces: application/json
No keywords or arguments accepted.
from falconpy import IntelligenceFeeds
# Do not hardcode API credentials!
falcon = IntelligenceFeeds(client_id=CLIENT_ID_HERE,
client_secret=CLIENT_SECRET
)
response = falcon.list_feeds()
print(response)
from falconpy import IntelligenceFeeds
# Do not hardcode API credentials!
falcon = IntelligenceFeeds(client_id=CLIENT_ID_HERE,
client_secret=CLIENT_SECRET
)
response = falcon.ListFeedTypes()
print(response)
from falconpy import APIHarnessV2
# Do not hardcode API credentials!
falcon = APIHarnessV2(client_id=CLIENT_ID,
client_secret=CLIENT_SECRET
)
response = falcon.command("ListFeedTypes")
print(response)
Query the accessible feeds for a customer.
query_feeds
Method | Route |
---|---|
/indicator-feed/queries/feed/v1 |
- Produces: application/json
Name | Service | Uber | Type | Data type | Description |
---|---|---|---|---|---|
feed_name |
|
|
query | string | Feed name. |
feed_interval |
|
|
query | string | Feed interval. Allowed values: dump , daily , hourly , minutely . |
since |
|
|
query | string | Valid timestamp in RFC3399 format. Restrictions:
|
parameters |
|
|
query | dictionary | Full query parameters payload as a dictionary, not required when using other keywords. |
from falconpy import IntelligenceFeeds
# Do not hardcode API credentials!
falcon = IntelligenceFeeds(client_id=CLIENT_ID_HERE,
client_secret=CLIENT_SECRET
)
response = falcon.query_feeds(feed_name="string", feed_interval="string", since="string")
print(response)
from falconpy import IntelligenceFeeds
# Do not hardcode API credentials!
falcon = IntelligenceFeeds(client_id=CLIENT_ID_HERE,
client_secret=CLIENT_SECRET
)
response = falcon.QueryFeedArchives(feed_name="string", feed_interval="string", since="string")
print(response)
from falconpy import APIHarnessV2
# Do not hardcode API credentials!
falcon = APIHarnessV2(client_id=CLIENT_ID,
client_secret=CLIENT_SECRET
)
response = falcon.command("QueryFeedArchives",
feed_name="string",
feed_interval="string",
since="string"
)
print(response)
- Home
- Discussions Board
- Glossary of Terms
- Installation, Upgrades and Removal
- Samples Collection
- Using FalconPy
- API Operations
-
Service Collections
- Alerts
- API Integrations
- ASPM
- CAO Hunting
- Certificate Based Exclusions
- Cloud AWS Registration
- Cloud Azure Registration
- Cloud OCI Registration
- Cloud Connect AWS (deprecated)
- Cloud Security Assets
- Cloud Snapshots
- Configuration Assessment
- Configuration Assessment Evaluation Logic
- Container Alerts
- Container Detections
- Container Image Compliance
- Container Images
- Container Packages
- Container Vulnerabilities
- Content Update Policies
- Correlation Rules
- CSPM Registration
- Custom IOAs
- Custom Storage
- D4C Registration (deprecated)
- DataScanner (deprecated)
- Delivery Settings
- Deployments
- Detects
- Device Content
- Device Control Policies
- Discover
- Downloads
- Drift Indicators
- Event Streams
- Exposure Management
- FaaS Execution
- Falcon Complete Dashboard
- Falcon Container
- Falcon Intelligence Sandbox
- FDR
- FileVantage
- Firewall Management
- Firewall Policies
- Foundry LogScale
- Host Group
- Host Migration
- Hosts
- Identity Protection
- Image Assessment Policies
- Incidents
- Installation Tokens
- Intel
- Intelligence Feeds
- Intelligence Indicator Graph
- IOA Exclusions
- IOC
- IOCs (deprecated)
- Kubernetes Protection
- MalQuery
- Message Center
- ML Exclusions
- Mobile Enrollment
- MSSP (Flight Control)
- NGSIEM
- OAuth2
- ODS (On Demand Scan)
- Overwatch Dashboard
- Prevention Policy
- Quarantine
- Quick Scan
- Quick Scan Pro
- Real Time Response
- Real Time Response Admin
- Real Time Response Audit
- Recon
- Report Executions
- Response Policies
- Sample Uploads
- Scheduled Reports
- Sensor Download
- Sensor Update Policy
- Sensor Usage
- Sensor Visibility Exclusions
- Serverless Vulnerabilities
- Spotlight Evaluation Logic
- Spotlight Vulnerabilities
- Tailored Intelligence
- ThreatGraph
- Unidentified Containers
- User Management
- Workflows
- Zero Trust Assessment
- Documentation Support
-
CrowdStrike SDKs
- Crimson Falcon - Ruby
- FalconPy - Python 3
- FalconJS - Javascript
- goFalcon - Go
- PSFalcon - Powershell
- Rusty Falcon - Rust