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

# Addepar (Basic Auth)

> Access the Addepar (Basic Auth) 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* -> *Addepar*.
      </Step>

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

      <Step title="Call the Addepar API">
        Let's make your first request to the Addepar API (fetch a list of all entities). 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 -X GET "https://api.nango.dev/v1/entities" \
              -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>' });

            // Lists all entities.
            const res = await nango.get({
              // https://developers.addepar.com/docs/entities#get-all-entities
              endpoint: '/v1/entities',
              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 Addepar accounts.
    </Tip>
  </Tab>

  <Tab title="🔗 Useful links">
    | Topic         | Links                                                                                                                                                                           |
    | ------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
    | Authorization | [Guide to connect to Addepar (Basic Auth) using Connect UI](/integrations/all/addepar-basic/connect)                                                                            |
    | General       | [Addepar Website](https://addepar.com/)                                                                                                                                         |
    | Developer     | [Addepar API docs](https://developers.addepar.com/docs/welcome)                                                                                                                 |
    |               | [How to assign appropriate API permissions to the API user](https://developers.addepar.com/docs/basic-authentication#step-1-assign-appropriate-api-permissions-to-the-api-user) |
    |               | [How to create an API key and secret](https://developers.addepar.com/docs/basic-authentication#step-2-create-an-api-key-and-secret-combination-for-the-api-user)                |
    |               | [Basic Authentication](https://developers.addepar.com/docs/basic-authentication#step-3-ensure-that-each-api-request-has-the-required-headers-and-follows-the-correct-format)    |
    |               | [URLs](https://developers.addepar.com/docs/urls)                                                                                                                                |
    |               | [Rate limiting](https://developers.addepar.com/docs/rate-limiting-1)                                                                                                            |

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

  <Tab title="🚨 API gotchas">
    *None yet, add yours!*

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

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