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

# Partners API

> Manage your partner account and onboard sub-partners onto the Thiqwave platform.

## Overview

The Partners API lets you manage your own partner profile and create and administer sub-partners — the businesses you bring onto the Thiqwave platform. Each sub-partner gets its own API key, allowing you to build multi-tenant fintech products on top of Thiqwave infrastructure.

## Base path

```
https://api.thiqwave.com/v1/partners
```

## Authentication

Every request to the Partners API must include your API key in the `X-API-Key` header.

```bash theme={null}
X-API-Key: your-api-key
```

<Warning>
  Never expose your API key in client-side code or commit it to version control.
  Rotate keys regularly from the [Thiqwave Dashboard](https://console.thiqwave.com).
</Warning>

## Endpoints

| Method | Endpoint           | Description                    |
| ------ | ------------------ | ------------------------------ |
| `GET`  | `/v1/partners/me`  | Get your partner profile       |
| `GET`  | `/v1/partners`     | List all sub-partners          |
| `POST` | `/v1/partners`     | Create a new sub-partner       |
| `PUT`  | `/v1/partners/:id` | Update a sub-partner's details |

## Endpoint pages

<CardGroup cols={2}>
  <Card title="Get Partner" icon="magnifying-glass" href="/api/partners/get">
    Retrieve your own profile or list all sub-partners.
  </Card>

  <Card title="Create Partner" icon="plus" href="/api/partners/create">
    Register a new sub-partner on the platform.
  </Card>

  <Card title="Update Partner" icon="pen" href="/api/partners/update">
    Modify a sub-partner's details.
  </Card>
</CardGroup>
