CrowdStrike SearchReports

CrowdStrike SearchReports

Certified
Enterprise Edition

Search CrowdStrike Falcon threat intelligence reports

Searches intelligence reports with the CrowdStrike Falcon Query Language (FQL). Omitting filter matches every report visible to the API client.

yaml
type: io.kestra.plugin.ee.crowdstrike.intel.SearchReports

List the latest tipper reports

yaml
id: search_reports
namespace: company.team

tasks:
  - id: search_reports
    type: io.kestra.plugin.ee.crowdstrike.intel.SearchReports
    clientId: "{{ secret('CROWDSTRIKE_CLIENT_ID') }}"
    clientSecret: "{{ secret('CROWDSTRIKE_CLIENT_SECRET') }}"
    filter: "type:'tipper'"
    sort: "created_date.desc"
    limit: 20
Properties

API client ID

Client ID of a CrowdStrike API client with the scopes required by the tasks and triggers being used.

API client secret

Client secret of the CrowdStrike API client. Exchanged for a short-lived OAuth2 Bearer token on every task run and trigger poll; never logged.

Defaulthttps://api.crowdstrike.com

CrowdStrike API base URL

Base URL of the CrowdStrike Falcon API for your cloud region (for example: https://api.crowdstrike.com for US-1, https://api.us-2.crowdstrike.com for US-2, https://api.eu-1.crowdstrike.com for EU-1, or https://api.laggar.gcw.crowdstrike.com for US-GOV-1). Defaults to the US-1 endpoint. Using the wrong region for your tenant results in 403 Forbidden responses.

FQL filter

CrowdStrike Falcon Query Language expression (for example: type: 'tipper'). Matches every report when omitted.

Default50

Page size

Maximum number of reports to return, from 1 to 5000. Defaults to 50.

Default0

Offset

Number of matching reports to skip, for pagination. Defaults to 0.

Sort order

Sort field and direction (for example: created_date.desc).

Matching intelligence reports

Definitions
created_dateinteger

Unix epoch timestamp (in seconds) this report was created.

idinteger

Report ID, used to fetch its PDF with GetReportPDF.

namestring

Report name.

short_descriptionstring

Short description of the report.

slugstring

URL-safe report slug.

target_countriesarray

Countries this report covers.

idinteger

Numeric taxonomy ID.

slugstring

URL-safe slug.

valuestring

Human-readable value (for example a country or industry name).

target_industriesarray

Industries this report covers.

idinteger

Numeric taxonomy ID.

slugstring

URL-safe slug.

valuestring

Human-readable value (for example a country or industry name).

type

Report type (for example notice, periodic, tipper).

idinteger

Numeric report type ID.

namestring

Human-readable report type name (for example notice, periodic, tipper).

slugstring

URL-safe slug.

Total number of reports matching the filter, without pagination