> ## Documentation Index
> Fetch the complete documentation index at: https://nango.dev/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# CrowdStrike

> Access the CrowdStrike API in 2 minutes 💨

<Tabs>
  <Tab title="🚀 Quickstart">
    <Steps>
      <Step title="Create an integration">
        In Nango ([free signup](https://app.nango.dev)), go to [Integrations](https://app.nango.dev/dev/integrations) -> *Configure New Integration* -> *CrowdStrike*.
      </Step>

      <Step title="Authorize CrowdStrike">
        Go to [Connections](https://app.nango.dev/dev/connections) -> *Add Test Connection* -> *Authorize*, then enter your CrowdStrike Base URL, Client ID, and Client Secret. Later, you'll let your users do the same directly from your app.
      </Step>

      <Step title="Call the CrowdStrike API">
        Let's make your first request to the CrowdStrike API (query a list of devices). Replace the placeholders below with your [secret key](https://app.nango.dev/dev/environment-settings), [integration ID](https://app.nango.dev/dev/integrations), and [connection ID](https://app.nango.dev/dev/connections):

        <Tabs>
          <Tab title="cURL">
            ```bash theme={null}
            curl "https://api.nango.dev/proxy/devices/queries/devices/v1?limit=10" \
              -H "Authorization: Bearer <NANGO-SECRET-KEY>" \
              -H "Provider-Config-Key: <INTEGRATION-ID>" \
              -H "Connection-Id: <CONNECTION-ID>"
            ```
          </Tab>

          <Tab title="Node">
            Install Nango's backend SDK with `npm i @nangohq/node`. Then run:

            ```typescript theme={null}
            import { Nango } from '@nangohq/node';

            const nango = new Nango({ secretKey: '<NANGO-SECRET-KEY>' });

            const res = await nango.get({
              endpoint: '/devices/queries/devices/v1',
              providerConfigKey: '<INTEGRATION-ID>',
              connectionId: '<CONNECTION-ID>',
              params: {
                limit: 10
              }
            });

            console.log(JSON.stringify(res.data, null, 2));
            ```
          </Tab>
        </Tabs>

        Or fetch credentials dynamically via the [Node SDK](/reference/sdks/node#get-a-connection-with-credentials) or [API](/reference/api/connection/get).
      </Step>
    </Steps>

    ✅ You're connected! Check the [Logs](https://app.nango.dev/dev/logs) tab in Nango to inspect requests.

    <Tip>
      Next step: [Embed the auth flow](/guides/primitives/auth) in your app to let your users connect their CrowdStrike accounts.
    </Tip>
  </Tab>

  <Tab title="🔗 Useful links">
    | Topic         | Links                                                                                                                           |
    | ------------- | ------------------------------------------------------------------------------------------------------------------------------- |
    | Authorization | [Guide to connect to CrowdStrike using Connect UI](/integrations/all/crowdstrike/connect)                                       |
    | General       | [CrowdStrike Developer Documentation](https://developer.crowdstrike.com/docs/)                                                  |
    | Developer     | [OAuth2 Client Credentials Flow](https://falcon.us-2.crowdstrike.com/documentation/page/a2a7fc0e/crowdstrike-oauth2-based-apis) |
    |               | [API Clients](https://falcon.us-2.crowdstrike.com/documentation/page/a2a7fc0e/crowdstrike-oauth2-based-apis#mf8226da)           |
    |               | [Base URLs](https://falcon.us-2.crowdstrike.com/documentation/page/a2a7fc0e/crowdstrike-oauth2-based-apis#k9578c40)             |
    |               | [API Scopes](https://falcon.us-2.crowdstrike.com/documentation/page/a2a7fc0e/crowdstrike-oauth2-based-apis#xcdef629)            |
    |               | [CrowdStrike APIs](https://falcon.us-2.crowdstrike.com/documentation/category/a3a706a8/crowdstrike-apis)                        |
    |               | [API rate limiting](https://falcon.us-2.crowdstrike.com/documentation/page/a2a7fc0e/crowdstrike-oauth2-based-apis#af41971e)     |
    |               | [IP Allowlist](https://falcon.us-2.crowdstrike.com/documentation/page/a2a7fc0e/crowdstrike-oauth2-based-apis#n2aebb7f)          |

    <Note>Contribute useful links by [editing this page](https://github.com/nangohq/nango/tree/master/docs/integrations/all/crowdstrike.mdx)</Note>
  </Tab>

  <Tab title="🚨 API gotchas">
    * You must be logged in to your CrowdStrike account to access their documentation pages.

    <Note>Contribute API gotchas by [editing this page](https://github.com/nangohq/nango/tree/master/docs/integrations/all/crowdstrike.mdx)</Note>
  </Tab>
</Tabs>

<Info>
  Questions? Join us in the [Slack community](https://nango.dev/slack).
</Info>
