> ## Documentation Index
> Fetch the complete documentation index at: https://docs.ndovu.co/llms.txt
> Use this file to discover all available pages before exploring further.

# Getting Started

> Overview of the Ndovu Partner API and how to get access.

The Ndovu Partner API lets an integrated partner (bank, fintech, or other distribution partner) authenticate as itself and pull the list of investment products (plans/funds) it's configured to offer its users.

This guide covers everything you need before writing any integration code:

1. How you get credentials
2. The base URL for your environment
3. The two calls every integration makes

<Note>
  The base URL below is the current development environment. Your onboarding
  email will confirm the production base URL to use before you go live.
</Note>

## How you get credentials

When your organization is onboarded as a partner, we create a partner record on our side and email your team:

* **Client ID** — a public identifier for your organization
* **Client Secret** — a private secret, shown to you only once in the onboarding email

<Warning>
  Store the client secret the same way you'd store any API secret — in a
  secrets manager, never in source control or client-side code. If it's lost,
  contact us to have it rotated; we cannot recover the original value since we
  only ever store a hash of it.
</Warning>

## Base URL

| Environment | Base URL                             |
| ----------- | ------------------------------------ |
| Development | `https://be-dev-1.dev.ndovu.co`      |
| Production  | *confirmed in your onboarding email* |

All endpoints in this documentation are shown relative to this base URL, for example `/api/v3/partners/auth`.

## The integration flow

Every partner integration follows the same two-step flow:

<Steps>
  <Step title="Authenticate">
    Exchange your client ID and client secret for a short-lived access token.
    See [Authentication](/authentication).
  </Step>

  <Step title="Fetch your products">
    Use that access token to list the investment plans/funds available to your
    partner account. See [Getting Products](/getting-products).
  </Step>
</Steps>

## Support

If anything in this documentation doesn't match what you see, or your credentials aren't working, email [support@ndovu.co](mailto:support@ndovu.co).
