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

# Overview

> Create, list, and retrieve exchanges and exchange partners.

# Exchanges

The Secure Exchange solution is a tokenized approach to creating an interconnected payment experience among third-party data providers, payment technologies and financial institutions.
The Exchanges API generates provider tokens, providing a secure way to receive data from third parties.
Today, Dwolla clients and reseller partners can utilize this API to perform functions such as creating funding-sources within the Dwolla ecosystem.
As more functionality is released, the functions this endpoint can perform will continue to expand.

### Exchange Partners resource

| Parameter | Description                                                                                       |
| --------- | ------------------------------------------------------------------------------------------------- |
| id        | A unique string value which can be used to identify a third-party “partner” via the Exchange API. |
| name      | The name of the third-party exchange-partner                                                      |
| status    | Status of the exchange-partner. Possible values are: `active`, `deactivated`, or `removed`.       |
| created   | ISO 8601 timestamp of when the exchange-partner resource was created.                             |

```bash theme={"dark"}
{
    "_links": {
        "self": {
            "href": "https://api.dwolla.com/exchange-partners/e5e9f2d3-a96c-4abd-a097-8ec7ae28aa8a",
            "type": "application/vnd.dwolla.v1.hal+json",
            "resource-type": "exchange-partner"
        },
        "funding-source": {
            "href": "https://api.dwolla.com/funding-sources",
            "type": "application/vnd.dwolla.v1.hal+json",
            "resource-type": "funding-source"
        }
    },
    "id": "e5e9f2d3-a96c-4abd-a097-8ec7ae28aa8a",
    "name": "MX",
    "status": "active",
    "created": "2022-08-30T19:31:59.106Z"
}

```

### Exchanges resource

| Parameter | Description                                                                         |
| --------- | ----------------------------------------------------------------------------------- |
| id        | A unique string value which can be used to identify an exchange resource.           |
| status    | Status of the exchange. Possible values are: `active`, `deactivated`, or `removed`. |
| created   | ISO 8601 timestamp of when the exchange resource was created.                       |

```bash theme={"dark"}
{
    "_links": {
        "self": {
            "href": "https://api.dwolla.com/exchanges/fcd15e5f-8d13-4570-a9b7-7fb49e55941d",
            "type": "application/vnd.dwolla.v1.hal+json",
            "resource-type": "exchange"
        },
        "exchange-partner": {
            "href": "https://api.dwolla.com/exchange-partners/9b55a4b3-34ae-4607-b2d1-622f1eed77f9",
            "type": "application/vnd.dwolla.v1.hal+json",
            "resource-type": "exchange-partner"
        }
    },
    "id": "fcd15e5f-8d13-4570-a9b7-7fb49e55941d",
    "status": "active",
    "created": "2022-10-21T21:41:03.283Z"
}

```
