# Partner Integration Instructions

## Contact our team

For fast support or any questions, you can

* contact our team on the homepage
* email our support <support+integration@unigox.com>
* set up a meeting with our team through [Calendly](https://calendly.com/skyzer-unigox/30min)

## Deep Link Integration

Best for: Fastest launch, minimal development, no compliance headaches.

You create a link to the Unigox widget with prefilled parameters. When the user clicks the button (e.g., “Buy with Bank” or “Sell for Cash”), they are taken to a hosted Unigox page with the trade details already set.

```url
https://www.unigox.com/buy?amount=100&asset=USDC&currency=NGN&paymentMethod=Opay
```

Prefill Parameters

| Parameter     | Required |                                                        |
| ------------- | -------- | ------------------------------------------------------ |
| crypto        | yes      | Asset code (e.g., USDC, USDT)                          |
| fiat          | yes      | Fiat currency code (e.g., NGN, MXN, BRL)               |
| amount        | no       |                                                        |
| side          | yes      | buy or sell                                            |
| paymentMethod |          | Specific method/network if desired (e.g., M-PESA, PIX) |
| partnerId     | no       | Your assigned partner ID for tracking revenue share    |
| redirectUrl   | no       | URL to redirect after trade completion                 |

✅ Fastest way to go live – no development required

## Iframe Widget

Best for: Keeping users inside your flow while using Unigox’s infrastructure.

You can embed our widget directly into your site or app. The same parameters as the deep link are supported, but the widget is shown inline.

```html
<iframe
  src="https://www.unigox.com/buy?amount=100&asset=USDT&currency=MXN"
  width="100%"
  height="700"
  style="border:none;">
</iframe>
```

White-labeling is available on request (remove Unigox branding).

## Key Differences: Deep Link vs. Iframe

| Integration speed             | Fastest (minutes)        | Quick (minutes)      |
| ----------------------------- | ------------------------ | -------------------- |
| User stays in your site       | ❌                        | ✅                    |
| Branding control              | Standard Unigox branding | Optional white-label |
| Mobile app friendly           | ✅                        | ✅                    |
| Custom payment method prefill | ✅                        | ✅                    |

## Server-to-Server API

*(coming soon)*


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://guide.unigox.com/integration-guide/partner-integration-instructions.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
