> For the complete documentation index, see [llms.txt](https://dexhunter.gitbook.io/dexhunter-partners/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://dexhunter.gitbook.io/dexhunter-partners/partners/getting-started.md).

# Getting Started

## Create Partner Account

1. Go to [app.dexhunter.io/partners](https://app.dexhunter.io/partners)
2. Connect your Cardano wallet
3. Fill in:
   * **Company Name** — Unique identifier for your integration
   * **Fee Percentage** — Your fee share (minimum 0.01%)
4. Click **Create Partner**

***

## Your Credentials

After creation, you'll receive:

| Credential    | Description                     |
| ------------- | ------------------------------- |
| `partnerName` | Your partner identifier         |
| `partnerCode` | Your API key (keep this secret) |

{% hint style="danger" %}
**Important:** Store your `partnerCode` securely. It's your API key for all requests.
{% endhint %}

***

## Using Your Credentials

### Widget

```jsx
<Swap
  partnerName="YOUR_PARTNER_NAME"
  partnerCode="YOUR_PARTNER_CODE"
/>
```

### API

```javascript
const headers = {
  'X-Partner-Id': 'YOUR_PARTNER_CODE',
};
```

***

## Dashboard

Access your dashboard at [app.dexhunter.io/partners](https://app.dexhunter.io/partners) to:

* View swap volume and earnings
* Monitor integration usage
* Manage partner settings
