> For the complete documentation index, see [llms.txt](https://even-financial.gitbook.io/developer-center/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://even-financial.gitbook.io/developer-center/embeddable-integrations/partner-pages/banking-deposits-marketplace.md).

# Banking (Deposits) Marketplace

## Standard Partner Page Integration

### Basic Partner Page URL Syntax

All Partner Pages utilize custom URLs and tracking to ensure all transactions are correctly attributed. To integrate the **Partner Pages** on your website, you would place the following URL on your page in your desired location.

{% hint style="info" %}
**PLEASE NOTE**: Your Engine representative will provide you with your specific partner page URL. Do not try to reproduce from the sample URL outlined below.
{% endhint %}

```
https://moneylion.com/network/{channel}/{zone}/
```

### Partner Page Components

* **Channel:** placeholder that will be replaced with precise values in the embed code provided to you.
* **Zone:** placeholder that will be replaced with precise values in the embed code provided to you.

If implementing using an anchor \<a> tag, you may consider having the link open in a new tab with a `target="_blank"` attribute:

```
<a href="https://moneylion.com/network/{channel}/{zone}/" target="_blank">Desired Link Text</a>
```

## Banking Specific Partner Pages & Demos

### Bridge Partner Pages

{% embed url="<https://fiona.com/network/avant/banking/explore?bridge_partner=sofi-savings>" %}

## Partner Page Brand Customization

{% hint style="info" %}
Note that the screenshots in this section reflect a Personal Loans Partner Page, not a New Marketplaces Partner Page.
{% endhint %}

All Partner Pages can be co-branded with your company logo and colors to deliver a seamless customer journey. The headline is also customizable (with Engine by MoneyLion compliance approval).

## Cobrand Example

All Partner Pages can be co-branded with your company logo and colors to deliver a seamless customer journey. The headline is also customizable (with Engine by MoneyLion compliance approval).

<figure><img src="/files/DlcD1k5x5QSEmfElZfib" alt=""><figcaption></figcaption></figure>

## Partner Page User Experience Customization

{% hint style="info" %}
Note that the screenshots in this section reflect a Personal Loans Partner Page, not a New Marketplaces Partner Page.
{% endhint %}

### Selecting the Initial Step

There are two different experiences for users to start the initial step:

* **Preview Step** displays static offers from Engine by MoneyLion’s network of financial institution partners as the first step of the user experience. Offers can be sorted by credit rating, ZIP code, loan purpose, and amount. Users can click into a static offer to begin filling out the form. Preview Step is recommended for partners who want to utilize offer values and financial institution brand equity to encourage users to enter the flow.\\
* **Form Step** displays the first question of the form (i.e., “Why do you need a loan?”). Using the Form Step, users can begin filling out the form immediately. Form Step is recommended for partners who want to maximize funnel efficiency and minimize the number of clicks in the user flow.

<figure><img src="/files/zezz6gYJuPszBuVZDj7a" alt=""><figcaption><p>Preview Step</p></figcaption></figure>

<figure><img src="/files/FWAs0TlVQhmOImFfZyUb" alt=""><figcaption><p>Form Step</p></figcaption></figure>

### The Results Page

After completing and submitting the form, users are shown offers for which they are pre-approved or pre-qualified. Users can sort offers in a variety of ways, including by APR, term length, and “recommended,” the latter of which relies on Engine by MoneyLion’s Rec Score to rank offers by likelihood of conversion.

<figure><img src="/files/RrABh4AAEe2zH1ALfRHp" alt=""><figcaption></figcaption></figure>

## Selecting the Auto-Redirect Option

Auto-Redirect is an option that allows users who receive pre-approved or pre-qualified offers to be automatically redirected to the top offer (powered by Engine by MoneyLion’s Rec Score) displayed on their Results Page after 10 seconds. Auto-Redirect is recommended for partners who prefer to streamline the user experience.

## Client Tags & Prefilling Customer Data

Engine Partner Pages support the ability to add certain tags with varying use cases, which are outlined in this section.

### Client Tag Use Cases

* Prefilling Customer Data
  * Decreases friction in the user experience and increases application submission rates
  * Useful when you already have that info on hand for that user, or want the front-end to default to particular values
* [Channel Partner Reporting](/developer-center/channel-partner-reporting/engine-analytics-api.md)

### How to Implement Client Tags

{% hint style="info" %}
\*The first query parameter appended at the end of a URL/path should start with a question mark `?`; all subsequent parameters should start with an ampersand `&`.
{% endhint %}

#### For Reporting

To **add client tags** to a Partner Page integration for the purpose of enhanced reporting, add query string parameters to the respective URL in the following format\*:

```
?tag.key_1=value_1&tag.key_2=value_2
```

#### For Data Prepopulation

The only field that can be prepopulated in Engine's Banking/Deposits Marketplace is a consumer's zipcode (`zip`):

```
?zip=10013
```

#### Sample Partner Page URL

```html
https://moneylion.com/network/{channel}/{zone}/search?tag.clientId=1234&zip=10013
```

<mark style="color:$primary;">In the above example,</mark> <mark style="color:$primary;">`clientId`</mark> <mark style="color:$primary;">is available as a tag for reporting purposes and the partner page "loan amount" field will be prepopulated with the value of "$</mark>10,000" for the consumer <mark style="color:$primary;">when the page is rendered.</mark>

### Supported Client Tag Keys

{% hint style="warning" %}
**Client tag keys are matched exactly, including case.** For example - `subid` and `subId` are stored as separate tags and will appear as separate keys in your reporting.&#x20;

**Please send each key with consistent casing across all requests, and use the exact spelling shown above.**
{% endhint %}

Below are the client tag keys that are currently supported:

* agentId
* campaignId
* clickId
* clientId
* deviceId
* medium
* sourceId
* subId
* subId1
* subId2
* subId3
* target
* trafficsource
* userId

If a different key is needed, please reach out to your Partner Manager - we *may* be able to accommodate, but adding nonstandard keys will increase the time it takes Engine to report Client Tag values back to you and is therefore not recommended.&#x20;


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://even-financial.gitbook.io/developer-center/embeddable-integrations/partner-pages/banking-deposits-marketplace.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
