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

# MillionVerifier

> Integrate your application with the MillionVerifier API

## Quickstart

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

<Steps>
  <Step id="create-integration" title="Create the integration">
    In Nango ([free signup](https://app.nango.dev)), go to [Integrations](https://app.nango.dev/dev/integrations) -> *Configure New Integration* -> *MillionVerifier*.
  </Step>

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

  <Step id="call-the-api" title="Call the MillionVerifier API">
    Let's make your first request to the MillionVerifier API. 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/v3/credits" \
          -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: '/v3/credits',
            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 id="implement-in-app" title="Implement Nango in your app">
    Follow our [Auth implementation guide](/guides/primitives/auth) to integrate Nango in your app.
  </Step>
</Steps>

<Note>
  This integration covers MillionVerifier's Single API (real-time email verification and credit balance), which shares one base URL and API key query parameter. The Bulk API runs on a separate host (`bulkapi.millionverifier.com`) with its own `key` query parameter and isn't covered by this integration.
</Note>

## MillionVerifier integration guides

Nango-maintained guides for common use cases.

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

Official docs: [MillionVerifier API documentation](https://developer.millionverifier.com)

## Pre-built syncs & actions for MillionVerifier

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

### Others

| Function name               | Description                                                             | Type                                           | Source code                                                                                                                               |
| --------------------------- | ----------------------------------------------------------------------- | ---------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- |
| `delete-bulk-file`          | Remove an uploaded bulk file from the account.                          | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/millionverifier/actions/delete-bulk-file.ts)          |
| `download-bulk-file-report` | Download the verification results report for a completed bulk file      | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/millionverifier/actions/download-bulk-file-report.ts) |
| `get-bulk-file-info`        | Retrieve processing status and result counts for an uploaded bulk file. | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/millionverifier/actions/get-bulk-file-info.ts)        |
| `get-credits`               | Check the remaining single-verification and bulk credit balance.        | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/millionverifier/actions/get-credits.ts)               |
| `list-bulk-files`           | List uploaded bulk verification files, with filtering.                  | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/millionverifier/actions/list-bulk-files.ts)           |
| `stop-bulk-file`            | Halt in-progress verification of an uploaded bulk file.                 | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/millionverifier/actions/stop-bulk-file.ts)            |
| `verify-email`              | Verify a single email address in real time.                             | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/millionverifier/actions/verify-email.ts)              |
| `bulk-files`                | Sync uploaded bulk verification file records (job history).             | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/millionverifier/syncs/bulk-files.ts)                  |

***
