Skip to content

Intelligence Feeds

The Intelligence Feeds service collection provides operations for downloading and querying intelligence feed archives. Download feed file contents as a zip archive, list accessible feeds for a customer, and query feeds by name, interval, and time range.

LanguageLast Update
Pythonv1.5.0
PowerShellv2.2.9
Gov0.20.0
TypeScriptv0.6.0
Rustv0.7.0
Rubyv1.2.0
OperationDescription
DownloadFeedArchive
download_feed
Download feed file contents as a zip archive.
ListFeedTypes
list_feeds
List the accessible feeds for a given customer.
QueryFeedArchives
query_feeds
Query the accessible feeds for a customer.

Download feed file contents as a zip archive.

GET /indicator-feed/entities/feed-download/v1
Scope Falcon Indicator Graph: READ Consumes · Produces application/json
PEP 8 download_feed
NameTypeData typeDescription
feed_item_idquerystringFeed object reference ID.
streamquerybooleanEnable streaming download of the returned file.
parametersquerydictionaryFull query parameters payload as a dictionary, not required when using other keywords.
from falconpy import IntelligenceFeeds
falcon = IntelligenceFeeds(client_id=CLIENT_ID,
client_secret=CLIENT_SECRET
)
response = falcon.download_feed(feed_item_id="string", stream=boolean)
print(response)

List the accessible feeds for a given customer.

GET /indicator-feed/entities/feed/v1
Scope Falcon Indicator Graph: READ Consumes · Produces application/json
PEP 8 list_feeds

No keywords or arguments accepted.

from falconpy import IntelligenceFeeds
falcon = IntelligenceFeeds(client_id=CLIENT_ID,
client_secret=CLIENT_SECRET
)
response = falcon.list_feeds()
print(response)

Query the accessible feeds for a customer.

GET /indicator-feed/queries/feed/v1
Scope Falcon Indicator Graph: READ Consumes · Produces application/json
PEP 8 query_feeds
NameTypeData typeDescription
feed_namequerystringFeed name.
feed_intervalquerystringFeed interval. Allowed values: dump, daily, hourly, minutely.
sincequerystringValid timestamp in RFC3399 format. Restrictions: Minutely: now()-2h; Hourly: now()-2d; Daily: now()-5d; Dump: now()-7d.
parametersquerydictionaryFull query parameters payload as a dictionary, not required when using other keywords.
from falconpy import IntelligenceFeeds
falcon = IntelligenceFeeds(client_id=CLIENT_ID,
client_secret=CLIENT_SECRET
)
response = falcon.query_feeds(feed_name="string",
feed_interval="string",
since="string")
print(response)