Skip to content
For LLMsView as Markdown·

CrowdStrike

Manage hosts, detections, incidents, and threat intelligence via CrowdStrike Falcon.

DetailValue
CategorySecurity
Base URLhttps://api.crowdstrike.com
AuthenticationOAuth2 Client Credentials
Endpoints5
Connector keycrowdstrike

Using CrowdStrike in a workflow

  1. Go to Connections and click New Connection.
  2. Pick CrowdStrike from the marketplace.
  3. Enter your credentials (see Authentication above for what's expected).
  4. In a workflow, drop an API Call node and select this connection.
  5. Pick the operation you need from the Operation dropdown — the full list is below.

Available endpoints

EndpointSummary
GET /devices/queries/devices/v1Search for hosts
GET /detects/queries/detects/v1Search detections
GET /incidents/queries/incidents/v1Search incidents
GET /intel/queries/actors/v1Search threat actors
GET /policy/queries/prevention/v1Search prevention policies

Each endpoint is documented in full below. Use the outline on the right to jump to one.

GET /devices/queries/devices/v1

Search for hosts

DetailValue
Operation IDsecurity.queryDevices
MethodGET
Path/devices/queries/devices/v1

Parameters

NameLocationTypeRequired
filterquerystringNo

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your CrowdStrike connection from the Connection dropdown.
  3. In the Operation dropdown, select security.queryDevices.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream CrowdStrike API reference.

GET /detects/queries/detects/v1

Search detections

DetailValue
Operation IDsecurity.queryDetections
MethodGET
Path/detects/queries/detects/v1

Parameters

No parameters.

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your CrowdStrike connection from the Connection dropdown.
  3. In the Operation dropdown, select security.queryDetections.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream CrowdStrike API reference.

GET /incidents/queries/incidents/v1

Search incidents

DetailValue
Operation IDsecurity.queryIncidents
MethodGET
Path/incidents/queries/incidents/v1

Parameters

No parameters.

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your CrowdStrike connection from the Connection dropdown.
  3. In the Operation dropdown, select security.queryIncidents.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream CrowdStrike API reference.

GET /intel/queries/actors/v1

Search threat actors

DetailValue
Operation IDsecurity.queryActors
MethodGET
Path/intel/queries/actors/v1

Parameters

No parameters.

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your CrowdStrike connection from the Connection dropdown.
  3. In the Operation dropdown, select security.queryActors.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream CrowdStrike API reference.

GET /policy/queries/prevention/v1

Search prevention policies

DetailValue
Operation IDsecurity.queryPolicies
MethodGET
Path/policy/queries/prevention/v1

Parameters

No parameters.

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your CrowdStrike connection from the Connection dropdown.
  3. In the Operation dropdown, select security.queryPolicies.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream CrowdStrike API reference.