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

# Arion API Docs

{% columns %}
{% column %}
[#business-apis](#business-apis "mention")

[#psd2](#psd2 "mention")
{% endcolumn %}

{% column %}
[#b2b-apis](#b2b-apis "mention")

[#open-data](#open-data "mention")
{% endcolumn %}

{% column %}
[#partnership-apis](#partnership-apis "mention")
{% endcolumn %}
{% endcolumns %}

***

### Business APIs

A suite of web services designed for businesses and organizations to access and manage their financial data. Currently it includes the Cards API and Claims API, with additional services planned for future release.

{% columns %}
{% column %}

#### Credit Cards

Get a list of your cards, get details of a card and it's transaction history.
{% endcolumn %}

{% column %}

#### Claims

Get your sent claims, create claims, update claims and view it's status and ultimately the payment.&#x20;
{% endcolumn %}

{% column %}

{% endcolumn %}
{% endcolumns %}

{% columns %}
{% column %}
{% content-ref url="/spaces/WRKRXR147Y5hgO0DneWg/pages/Vckq0UTUUZKgN1usW2ZA" %}
[Cards API](/business-apis/cards-api.md)
{% endcontent-ref %}
{% endcolumn %}

{% column %}
{% content-ref url="/spaces/WRKRXR147Y5hgO0DneWg/pages/PGkLJHVw1ZDjBBq5xsRx" %}
[Claims API](/business-apis/claims-api.md)
{% endcontent-ref %}
{% endcolumn %}

{% column %}

{% endcolumn %}
{% endcolumns %}

***

### B2B APIs

Our B2B APIs are SOAP endpoints that will migrate eventually to our Business API

{% content-ref url="/spaces/1H6XBw80lUfS2N0XzK27" %}
[B2B](https://apidocs.arionbanki.is/b2b-2013-schema/)
{% endcontent-ref %}

***

### Partnership APIs

Partner with Arion to get access to the partnership APIs.

{% columns %}
{% column %}

#### Claims Wholesale

Create claims on behalf of your clients.\
Monitor them and manage them.

{% content-ref url="/spaces/h9MuInZ2gBGVzfYaKh0S/pages/FY9Ib5PSBzo9Q2TIm1do" %}
[Claims Wholesale API](/partnership-apis/claims-wholesale-api.md)
{% endcontent-ref %}
{% endcolumn %}

{% column %}

{% endcolumn %}

{% column %}

{% endcolumn %}
{% endcolumns %}

***

### PSD2

The PSD2 webservices are restricted to payment service providers regulated by the financial supervision of the Central Bank of Iceland.&#x20;

{% columns %}
{% column %}

#### PSD2 API

Create and manage payments, get access to accounts and more.

{% content-ref url="/spaces/0dhg8Dx3oxMg6FAZtyuC/pages/8ZexWnU8uFYZnbbreQlI" %}
[Setting Up Sandbox](/psd2/getting-started/setting-up-sandbox.md)
{% endcontent-ref %}
{% endcolumn %}

{% column %}

{% endcolumn %}

{% column %}

{% endcolumn %}
{% endcolumns %}

***

### Open Data

Use our open data APIs to fetch data without needing a certificate.&#x20;

{% columns %}
{% column %}

#### Funds API

Get details about funds and their prices and history.
{% endcolumn %}

{% column %}

#### Currencies API

Get currency exchange rates<br>
{% endcolumn %}

{% column %}

{% endcolumn %}
{% endcolumns %}

{% columns %}
{% column %}
{% content-ref url="/spaces/hpttLD80zK8e6g3HuSsO/pages/uJmgnwZOdq0canx19eUN" %}
[Stefnir's Funds](/open-data/api-reference/stefnirs-funds.md)
{% endcontent-ref %}

{% endcolumn %}

{% column %}
{% content-ref url="/spaces/hpttLD80zK8e6g3HuSsO/pages/5wbeuAMx0Jmf6ruXddvd" %}
[Currencies](/open-data/api-reference/currencies-old-curated.md)
{% endcontent-ref %}
{% endcolumn %}

{% column %}

{% endcolumn %}
{% endcolumns %}

***

### MCP Server

To connect your agents to our documentation, feel free to use our MCP server. Add our server, `https://arionbanki.gitbook.io/arion-banki/~gitbook/mcp`  , to whatever agentic tool you use:

{% tabs %}
{% tab title="Claude" %}
These steps work in Claude on the web and in Claude Desktop.

Open **Settings** → **Connectors**.

Click **Add custom connector**.&#x20;

Then paste our MCP server URL, `https://arionbanki.gitbook.io/arion-banki/~gitbook/mcp`.

If Claude doesn’t show remote connectors, your current plan or rollout might not support them yet.
{% endtab %}

{% tab title="Claude Code" %}
Run this command in your terminal:

```
claude mcp add --transport http my-docs https://arionbanki.gitbook.io/arion-banki/~gitbook/mcp
```

Replace `my-docs` with any server name you want.
{% endtab %}

{% tab title="Cursor" %}
Open **Settings** → **MCP**.

Click **Add new MCP server**.&#x20;

Then paste `https://arionbanki.gitbook.io/arion-banki/~gitbook/mcp`.

You can also add this file in `.cursor/mcp.json`:

```
{
  "mcpServers": {
    "my-docs": {
      "url": "https://arionbanki.gitbook.io/arion-banki/~gitbook/mcp"
    }
  }
}
```

Replace `my-docs` with your own server name if you want.
{% endtab %}

{% tab title="Codex" %}
Use the `codex mcp add` command, or add the server to your `config.toml`.

Command example:

```
codex mcp add my-docs https://arionbanki.gitbook.io/arion-banki/~gitbook/mcp
```

Config example:

```
[mcp_servers.my-docs]
url = "https://arionbanki.gitbook.io/arion-banki/~gitbook/mcp"
```

Replace `my-docs` with your own server name if you want.
{% endtab %}

{% tab title="VS Code (Copilot)" %}
Open your `mcp.json` file. Then add a server entry with HTTP transport:

```
{
  "servers": {
    "my-docs": {
      "type": "http",
      "url": "https://arionbanki.gitbook.io/arion-banki/~gitbook/mcp"
    }
  }
}
```

Replace `my-docs` with your own server name if you want.
{% endtab %}
{% endtabs %}
