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

# Monday

> Integrate your application with the Monday API

## 🚀 Quickstart

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

<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* -> *Monday*.
  </Step>

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

  <Step title="Call the Monday API">
    Let's make your first request to the Monday API (Get boards). 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/v2" \
          -H "Authorization: Bearer <NANGO-SECRET-KEY>" \
          -H "Provider-Config-Key: <INTEGRATION-ID>" \
          -H "Connection-Id: <CONNECTION-ID>" \
          -H "Content-Type: application/json" \
          -d '{"query": "query { boards(limit: 10) { id name } }"}'
        ```
      </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 response = await nango.post({
            endpoint: '/v2',
            data: {
                query: 'query { boards(limit: 10) { id name } }'
            },
            providerConfigKey: '<INTEGRATION-ID>',
            connectionId: '<CONNECTION-ID>'
        });

        console.log(response.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).

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

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

    To obtain your own production credentials, follow the setup guide linked below.
  </Step>
</Steps>

## 📚 Monday Integration Guides

Nango maintained guides for common use cases.

* [How to register your own Monday OAuth app](/api-integrations/monday/how-to-register-your-own-monday-oauth-app)\
  Register an OAuth app with Monday and obtain credentials to connect it to Nango

Official docs: [Monday API documentation](https://developer.monday.com/apps/docs/intro)

## 🧩 Pre-built syncs & actions for Monday

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

### Others

| Function name | Description                      | Type                                           | Source code                                                                                                     |
| ------------- | -------------------------------- | ---------------------------------------------- | --------------------------------------------------------------------------------------------------------------- |
| `boards`      | Sync boards from monday.com.     | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/monday/syncs/boards.ts)     |
| `columns`     | Sync columns from monday.com     | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/monday/syncs/columns.ts)    |
| `groups`      | Sync groups from monday.com      | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/monday/syncs/groups.ts)     |
| `subitems`    | Sync subitems from monday.com    | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/monday/syncs/subitems.ts)   |
| `teams`       | Sync teams from monday.com       | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/monday/syncs/teams.ts)      |
| `updates`     | Sync updates from monday.com.    | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/monday/syncs/updates.ts)    |
| `users`       | Sync users from monday.com.      | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/monday/syncs/users.ts)      |
| `workspaces`  | Sync workspaces from monday.com. | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/monday/syncs/workspaces.ts) |

## API gotchas

* Access tokens do not expire and will be valid until the user uninstalls your app. Monday's OAuth flow does not support refresh tokens at the moment.

***
