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

# Typeform

> Integrate your application with the Typeform API

## 🚀 Quickstart

Connect to Typeform 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* -> *Typeform*.
  </Step>

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

    <Tip>On Typeform's EU data center? See the [connect guide](/docs/api-integrations/typeform/connect) for the extra host fields you'll need to enter.</Tip>
  </Step>

  <Step title="Call the Typeform API">
    Let's make your first request to the Typeform API to list your forms. Replace the placeholders below with your [Environment API key](/docs/reference/backend/http-api/api-keys), [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/forms" \
          -H "Authorization: Bearer <NANGO-API-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({ apiKey: '<NANGO-API-KEY>' });

        const res = await nango.get({
            endpoint: '/forms',
            providerConfigKey: '<INTEGRATION-ID>',
            connectionId: '<CONNECTION-ID>'
        });

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

    Or fetch credentials with the [Node SDK](/docs/reference/backend/backend-sdk/node#get-a-connection-with-credentials) or [API](/docs/reference/backend/http-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 [quickstart](/docs/getting-started/quickstart) to integrate Nango in your app.

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

## 📚 Typeform integration guides

Nango maintained guides for common use cases.

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

* [How do I link my account?](/docs/api-integrations/typeform/connect)\
  Connect with the Connect UI, including the extra steps for Typeform's EU data centers

Official docs: [Typeform developer docs](https://www.typeform.com/developers/get-started/)

## 🧩 Pre-built syncs & actions for Typeform

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

### Others

| Function name      | Description                                              | Type                                           | Source code                                                                                                               |
| ------------------ | -------------------------------------------------------- | ---------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- |
| `create-form`      | Create a form.                                           | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/typeform/actions/create-form.ts)      |
| `create-image`     | Register an image from a URL or base64 payload.          | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/typeform/actions/create-image.ts)     |
| `create-theme`     | Create a theme.                                          | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/typeform/actions/create-theme.ts)     |
| `create-webhook`   | Create or update a webhook.                              | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/typeform/actions/create-webhook.ts)   |
| `create-workspace` | Create a workspace.                                      | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/typeform/actions/create-workspace.ts) |
| `delete-form`      | Delete a form.                                           | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/typeform/actions/delete-form.ts)      |
| `delete-image`     | Delete an image.                                         | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/typeform/actions/delete-image.ts)     |
| `delete-responses` | Bulk-delete one or more form responses.                  | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/typeform/actions/delete-responses.ts) |
| `delete-theme`     | Delete a theme.                                          | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/typeform/actions/delete-theme.ts)     |
| `delete-webhook`   | Delete a webhook.                                        | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/typeform/actions/delete-webhook.ts)   |
| `delete-workspace` | Delete a workspace.                                      | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/typeform/actions/delete-workspace.ts) |
| `get-form`         | Retrieve a form.                                         | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/typeform/actions/get-form.ts)         |
| `get-image`        | Retrieve image metadata                                  | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/typeform/actions/get-image.ts)        |
| `get-theme`        | Retrieve a theme.                                        | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/typeform/actions/get-theme.ts)        |
| `get-webhook`      | Retrieve a single webhook by tag for a Typeform form.    | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/typeform/actions/get-webhook.ts)      |
| `get-workspace`    | Retrieve a workspace.                                    | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/typeform/actions/get-workspace.ts)    |
| `list-forms`       | List forms.                                              | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/typeform/actions/list-forms.ts)       |
| `list-images`      | List images.                                             | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/typeform/actions/list-images.ts)      |
| `list-responses`   | List form responses.                                     | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/typeform/actions/list-responses.ts)   |
| `list-themes`      | List themes.                                             | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/typeform/actions/list-themes.ts)      |
| `list-webhooks`    | List webhooks                                            | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/typeform/actions/list-webhooks.ts)    |
| `list-workspaces`  | List workspaces.                                         | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/typeform/actions/list-workspaces.ts)  |
| `patch-form`       | Partially update a form using JSON Patch operations      | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/typeform/actions/patch-form.ts)       |
| `update-form`      | Fully replace a form (whole-definition update).          | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/typeform/actions/update-form.ts)      |
| `update-theme`     | Partially update a theme                                 | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/typeform/actions/update-theme.ts)     |
| `update-workspace` | Partially update a workspace using JSON Patch operations | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/typeform/actions/update-workspace.ts) |
| `forms`            | Sync forms.                                              | [Sync](/docs/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/typeform/syncs/forms.ts)              |
| `images`           | Sync image metadata.                                     | [Sync](/docs/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/typeform/syncs/images.ts)             |
| `responses`        | Sync responses.                                          | [Sync](/docs/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/typeform/syncs/responses.ts)          |
| `themes`           | Sync themes.                                             | [Sync](/docs/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/typeform/syncs/themes.ts)             |
| `webhooks`         | Sync webhooks.                                           | [Sync](/docs/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/typeform/syncs/webhooks.ts)           |
| `workspaces`       | Sync workspaces.                                         | [Sync](/docs/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/typeform/syncs/workspaces.ts)         |

***
