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

# Fillout

> Access the Fillout 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* -> *Fillout*. Nango doesn't provide a test OAuth app for Fillout yet. You’ll need to set up your own by following these [instructions](#🧑%E2%80%8D💻-oauth-app-setup). After that, make sure to add the OAuth client ID and secret in the integration settings in Nango.
      </Step>

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

      <Step title="Call the Fillout API">
        Let's make your first request to the Fillout API (fetch a list of all your forms). 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/api/forms" \
             -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/api/forms',
              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).
      </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 Fillout accounts.
    </Tip>
  </Tab>

  <Tab title="🧑‍💻 OAuth app setup">
    <Steps>
      <Step title="Create a Fillout account">
        If you don't already have one, sign up for a [Fillout account](https://build.fillout.com/signup).
      </Step>

      <Step title="Create an OAuth application">
        1. Navigate to [OAuth integrations](https://build.fillout.com/home/settings/developer/apps).
        2. Click **Create app**.
        3. Enter a **Name** for your application.
        4. Set the **Redirect URI** to `https://api.nango.dev/oauth/callback`.
        5. Submit the form to create your application.
      </Step>

      <Step title="Obtain your OAuth credentials">
        1. After creating the app, you'll see your **Client ID** displayed.
        2. Click **Generate Secret** to create your **Client Secret**.
        3. Copy both the **Client ID** and **Client Secret**, you'll need these when configuring your integration in Nango.
      </Step>

      <Step title="Next">
        Follow the [*Quickstart*](/getting-started/quickstart).
      </Step>
    </Steps>

    <Note>Apps must be published to connect to other organizations. Contact [support@fillout.com](mailto:support@fillout.com) to request publishing for production use.</Note>
  </Tab>

  <Tab title="🔗 Useful links">
    | Topic     | Links                                                                                   |
    | --------- | --------------------------------------------------------------------------------------- |
    | General   | [Fillout Website](https://www.fillout.com/)                                             |
    |           | [Fillout Dashboard](https://build.fillout.com/)                                         |
    | Developer | [Generate an OAuth integration](https://build.fillout.com/home/settings/developer/apps) |
    |           | [Fillout API docs](https://www.fillout.com/help/api-reference/)                         |
    |           | [API Authentication](https://www.fillout.com/help/oauth-applications)                   |
    |           | [API rate limiting](https://www.fillout.com/help/fillout-rest-api#rate-limits)          |

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

  <Tab title="🚨 API gotchas">
    * All endpoints may be called up to 5 times per second per account.
    * Apps must be published to connect with other organizations in production. To request publishing for production use, please contact [support@fillout.com](mailto:support@fillout.com)

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

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