> ## Documentation Index
> Fetch the complete documentation index at: https://nango-wari-migrated-bigcommerce-docs.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Amplitude

> Integrate your application with the Amplitude API

## 🚀 Quickstart

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

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

  <Step title="Call the Amplitude API">
    Let's make your first request to the Amplitude API (fetch a list of events). 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/api/2/events/list" \
          -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({
            // https://amplitude-docs.vercel.app/docs/apis/analytics/dashboard-rest#get-events-list
            endpoint: '/api/2/events/list',
            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.
  </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>

## 📚 Amplitude Integration Guides

Nango-maintained guides for common use cases.

* [How do I link my account?](/api-integrations/amplitude/connect)\
  Connect your Amplitude account using the Connect UI

Official docs: [Amplitude API Documentation](https://amplitude.com/docs/apis)

## 🧩 Pre-built syncs & actions for Amplitude

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

### Others

| Function name                       | Description                                            | Type                                           | Source code                                                                                                                                 |
| ----------------------------------- | ------------------------------------------------------ | ---------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- |
| `batch-events`                      | Send batched events to Amplitude in bulk.              | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/amplitude/actions/batch-events.ts)                      |
| `bulk-update-annotation-categories` | Assign an annotation category to multiple annotations. | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/amplitude/actions/bulk-update-annotation-categories.ts) |
| `create-annotation-category`        | Create an annotation category.                         | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/amplitude/actions/create-annotation-category.ts)        |
| `create-annotation`                 | Create a chart annotation.                             | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/amplitude/actions/create-annotation.ts)                 |
| `create-event-category`             | Create an event category in Amplitude taxonomy.        | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/amplitude/actions/create-event-category.ts)             |
| `create-event-property`             | Create an event property in taxonomy.                  | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/amplitude/actions/create-event-property.ts)             |
| `create-event-type`                 | Create a taxonomy event type.                          | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/amplitude/actions/create-event-type.ts)                 |
| `create-release`                    | Create a release marker in Amplitude.                  | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/amplitude/actions/create-release.ts)                    |
| `create-user-deletion-job`          | Create a user privacy deletion job.                    | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/amplitude/actions/create-user-deletion-job.ts)          |
| `create-user-property`              | Create a user property in taxonomy.                    | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/amplitude/actions/create-user-property.ts)              |
| `delete-annotation-category`        | Delete an annotation category                          | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/amplitude/actions/delete-annotation-category.ts)        |
| `delete-annotation`                 | Delete a chart annotation                              | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/amplitude/actions/delete-annotation.ts)                 |
| `delete-event-category`             | Delete an event category                               | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/amplitude/actions/delete-event-category.ts)             |
| `delete-event-property`             | Delete an event property in taxonomy.                  | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/amplitude/actions/delete-event-property.ts)             |
| `delete-event-type`                 | Delete a taxonomy event type.                          | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/amplitude/actions/delete-event-type.ts)                 |
| `delete-user-from-deletion-job`     | Remove an Amplitude ID from a deletion job             | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/amplitude/actions/delete-user-from-deletion-job.ts)     |
| `delete-user-property`              | Delete a user property in taxonomy.                    | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/amplitude/actions/delete-user-property.ts)              |
| `download-cohort`                   | Download cohort members                                | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/amplitude/actions/download-cohort.ts)                   |
| `export-events`                     | Start or retrieve bounded event export                 | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/amplitude/actions/export-events.ts)                     |
| `get-annotation-category`           | Retrieve an annotation category.                       | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/amplitude/actions/get-annotation-category.ts)           |
| `get-annotation`                    | Retrieve a chart annotation.                           | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/amplitude/actions/get-annotation.ts)                    |
| `get-cohort`                        | Retrieve cohort metadata.                              | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/amplitude/actions/get-cohort.ts)                        |
| `get-event-category`                | Retrieve an event category from Amplitude taxonomy.    | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/amplitude/actions/get-event-category.ts)                |
| `get-event-property`                | Retrieve an event property in taxonomy.                | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/amplitude/actions/get-event-property.ts)                |
| `get-event-type`                    | Retrieve a taxonomy event type.                        | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/amplitude/actions/get-event-type.ts)                    |
| `get-group-property`                | Retrieve a group property in taxonomy.                 | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/amplitude/actions/get-group-property.ts)                |
| `get-user-deletion-jobs`            | List user privacy deletion jobs in a date range.       | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/amplitude/actions/get-user-deletion-jobs.ts)            |
| `get-user-property`                 | Retrieve a user property in taxonomy.                  | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/amplitude/actions/get-user-property.ts)                 |
| `group-identify`                    | Update group properties                                | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/amplitude/actions/group-identify.ts)                    |
| `identify-user`                     | Update user properties                                 | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/amplitude/actions/identify-user.ts)                     |
| `list-annotation-categories`        | List annotation categories.                            | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/amplitude/actions/list-annotation-categories.ts)        |
| `list-annotations`                  | List chart annotations.                                | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/amplitude/actions/list-annotations.ts)                  |
| `list-cohorts`                      | List cohorts.                                          | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/amplitude/actions/list-cohorts.ts)                      |
| `list-event-categories`             | List event categories from Amplitude taxonomy          | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/amplitude/actions/list-event-categories.ts)             |
| `list-event-properties`             | List event properties in taxonomy.                     | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/amplitude/actions/list-event-properties.ts)             |
| `list-event-types`                  | List taxonomy event types                              | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/amplitude/actions/list-event-types.ts)                  |
| `list-group-properties`             | List group properties in taxonomy.                     | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/amplitude/actions/list-group-properties.ts)             |
| `list-user-properties`              | List user properties in taxonomy                       | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/amplitude/actions/list-user-properties.ts)              |
| `restore-event-property`            | Restore a deleted event property in taxonomy.          | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/amplitude/actions/restore-event-property.ts)            |
| `restore-event-type`                | Restore a deleted taxonomy event type.                 | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/amplitude/actions/restore-event-type.ts)                |
| `restore-user-property`             | Restore a deleted user property in taxonomy.           | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/amplitude/actions/restore-user-property.ts)             |
| `track-event`                       | Send an event to Amplitude.                            | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/amplitude/actions/track-event.ts)                       |
| `update-annotation-category`        | Update an annotation category                          | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/amplitude/actions/update-annotation-category.ts)        |
| `update-annotation`                 | Update a chart annotation.                             | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/amplitude/actions/update-annotation.ts)                 |
| `update-event-category`             | Update an event category.                              | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/amplitude/actions/update-event-category.ts)             |
| `update-event-property`             | Update an event property in taxonomy.                  | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/amplitude/actions/update-event-property.ts)             |
| `update-event-type`                 | Update a taxonomy event type.                          | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/amplitude/actions/update-event-type.ts)                 |
| `update-group-property`             | Update a group property in taxonomy.                   | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/amplitude/actions/update-group-property.ts)             |
| `update-user-property`              | Update a user property in taxonomy.                    | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/amplitude/actions/update-user-property.ts)              |
| `annotation-categories`             | Sync Amplitude annotation categories.                  | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/amplitude/syncs/annotation-categories.ts)               |
| `annotations`                       | Sync Amplitude chart annotations.                      | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/amplitude/syncs/annotations.ts)                         |
| `cohort-members`                    | Sync cohort members.                                   | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/amplitude/syncs/cohort-members.ts)                      |
| `cohorts`                           | Sync cohorts.                                          | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/amplitude/syncs/cohorts.ts)                             |
| `event-categories`                  | Sync Amplitude taxonomy event categories               | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/amplitude/syncs/event-categories.ts)                    |
| `event-properties`                  | Sync Amplitude taxonomy event properties               | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/amplitude/syncs/event-properties.ts)                    |
| `event-types`                       | Sync Amplitude taxonomy event types                    | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/amplitude/syncs/event-types.ts)                         |
| `events-export`                     | Sync events export.                                    | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/amplitude/syncs/events-export.ts)                       |
| `group-properties`                  | Sync Amplitude taxonomy group properties               | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/amplitude/syncs/group-properties.ts)                    |
| `user-properties`                   | Sync Amplitude taxonomy user properties.               | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/amplitude/syncs/user-properties.ts)                     |

***
