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

# Greenhouse (Job Board API)

> Access the Greenhouse Job Board 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* -> *Greenhouse (Job Board API)*.
      </Step>

      <Step title="Authorize Greenhouse">
        Go to [Connections](https://app.nango.dev/dev/connections) -> *Add Test Connection* -> *Authorize*, then enter your Greenhouse Job Board API credentials. Later, you'll let your users do the same directly from your app.
      </Step>

      <Step title="Call the Greenhouse Job Board API">
        Let's make your first request to the Greenhouse Job Board API (fetch your organization's name and job board content). 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 -X GET "https://api.nango.dev/proxy/v1/boards/{connectionConfig.boardToken}" \
              -H "Authorization: Bearer <NANGO-SECRET-KEY>" \
              -H "Provider-Config-Key: <INTEGRATION-ID>" \
              -H "Connection-Id: <CONNECTION-ID>" \
              -H "Accept: application/json"
            ```
          </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/boards/{connectionConfig.boardToken}/jobs',
              providerConfigKey: '<INTEGRATION-ID>',
              connectionId: '<CONNECTION-ID>'
            });

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

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

        <Note>
          The `{connectionConfig.boardToken}` in the URL represents the boardToken. You can get this value from your connection configuration after creating the connection.
        </Note>
      </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 Greenhouse accounts.
    </Tip>
  </Tab>

  <Tab title="🔗 Useful links">
    | Topic         | Links                                                                                                           |
    | ------------- | --------------------------------------------------------------------------------------------------------------- |
    | Authorization | [Guide to connect to Greenhouse Job Board API using Connect UI](/integrations/all/greenhouse-job-board/connect) |
    | General       | [Greenhouse Website](https://www.greenhouse.io/)                                                                |
    |               | [Greenhouse Dashboard](https://app.greenhouse.io/)                                                              |
    | Developer     | [Authentication docs](https://developers.greenhouse.io/job-board.html#authentication)                           |
    |               | [Job Board API Docs](https://developers.greenhouse.io/job-board.html#introduction)                              |

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

  <Tab title="🚨 API gotchas">
    *None yet, add yours!*

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

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