> For the complete documentation index, see [llms.txt](https://docs.aquanow.io/pay/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.aquanow.io/pay/api-endpoints/wallet-types-api.md).

# Wallet Types API

## GET a list of  VASPs and their Ids

<mark style="color:green;">`GET`</mark> `https://api.aquanow.com/v1/addresses/walletTypes`

> This only provides a list of VASPs. In endpoints where wallet host is required you can also provide "UNKNOWN" or "SELF\_HOSTED

For authentication, in addition to `x-nonce`, `x-api-key`, and `x-signature`, you also need to specify the `region`. Depending on where your account is located, this could be `us-east-1` or `me-central-1`.

{% tabs %}
{% tab title="200 : Success" %}

```javascript
{
    "data": [
        {
            "id": "fcf01aed-5261-4553-9c91-9304803f2066",
            "name": "Ian VASP"
        },
        {
            "id": "cb4e20c0-78d6-4002-8d0e-a58f12b6ecf2",
            "name": "ICN Company Testing1"
        },
        {
            "id": "a4c6847b-7f27-4cc7-a131-e139dabc93b4",
            "name": "BitMEX EU"
        },
        {
            "id": "f62b87fb-47cf-491c-8584-4e6e13dade65",
            "name": "Bitnice"
        },
        {
            "id": "faea2764-e229-4cf3-b3af-bc38e95b70f3",
            "name": "Bitoasis Staging TravelRules"
        },
        {
            "id": "37e8b870-6da4-4936-8fc9-973aafd1a247",
            "name": "BLOX B.V. (NL)"
        }
    ]
}
```

{% endtab %}
{% endtabs %}


---

# 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://docs.aquanow.io/pay/api-endpoints/wallet-types-api.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.
