> ## 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.

# BigChange

> Integrate your application with the BigChange JobWatch API

## 🚀 Quickstart

Connect to BigChange with Nango and see data flow in 2 minutes.

<Steps>
  <Step title="Create the integration">
    In Nango ([free signup](https://app.nango.dev)), go to [Integrations](https://app.nango.dev/dev/integrations) -> *Configure New Integration* -> *BigChange*. Enter your BigChange Partner API Client ID and Client Secret.
  </Step>

  <Step title="Authorize BigChange">
    Go to [Connections](https://app.nango.dev/dev/connections) -> *Add Test Connection* -> *Authorize*, then enter the customer's numeric Customer ID. BigChange uses OAuth 2.0 Client Credentials, so there is no user-facing sign-in screen — the connection is created as soon as the Customer ID is submitted. Later, you'll let your users do the same directly from your app.
  </Step>

  <Step title="Call the BigChange API">
    Let's make your first request to the BigChange API (fetch a list of users). 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/v1/users?page-number=1&page-size=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: '/v1/users?page-number=1&page-size=10',
            providerConfigKey: '<INTEGRATION-ID>',
            connectionId: '<CONNECTION-ID>'
        });

        console.log(res.data);
        ```
      </Tab>
    </Tabs>

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

    ✅ You're connected! Check the [Logs](https://app.nango.dev/dev/logs) tab in Nango to inspect requests. Nango automatically injects the `customer-id` header on every proxy call from the connection's `customer_id` field.
  </Step>

  <Step title="Implement Nango in your app">
    Follow our [Auth implementation guide](/guides/primitives/auth) to integrate Nango in your app.
  </Step>
</Steps>

## 📚 BigChange Integration Guides

Nango maintained guides for common use cases.

* [How to link your BigChange account](/api-integrations/bigchange/connect)\
  Generate your BigChange Partner API credentials, find your Customer ID, and connect your account to Nango.

Official docs: [BigChange API documentation](https://developers.bigchange.com/docs/rest)

## 🧩 Pre-built syncs & actions for BigChange

Enable them in your dashboard. Extend and customize to fit your needs.

*No pre-built syncs or actions available yet.*

<Tip>Not seeing the integration you need? [Build your own](/guides/functions/functions-guide) independently.</Tip>

***
