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

# Accounts & Wallets API

> Manage settlement accounts and stablecoin wallets.

## Overview

The Accounts & Wallets API lets you manage fiat settlement accounts and stablecoin wallets for your platform. Fiat accounts are corridor-specific settlement accounts held with regulated partners, ready to receive and hold funds. Stablecoin wallets provide non-custodial MPC security or bring-your-own integration, depending on your preference.

Each account carries a status—`active`, `frozen`, or `closed`—and maintains real-time balance information for your operations.

## Base path

```
https://api.thiqwave.com/v1/accounts
```

## Authentication

All requests must include your API key in the `X-API-Key` header.

```bash theme={null}
X-API-Key: your-api-key
```

## Supported currencies and corridors

| Currency | Type       | Corridor                    |
| -------- | ---------- | --------------------------- |
| AED      | Fiat       | UAE                         |
| USDC     | Stablecoin | Polygon, Ethereum, Arbitrum |
| USDT     | Stablecoin | Polygon, Ethereum, Arbitrum |

## Endpoints

| Method | Endpoint           | Description                    |
| ------ | ------------------ | ------------------------------ |
| `POST` | `/v1/accounts`     | Create a new account or wallet |
| `GET`  | `/v1/accounts/:id` | Retrieve account details       |

## Endpoint pages

<CardGroup cols={2}>
  <Card title="Create Account" icon="plus" href="/api/accounts/create">
    Create a fiat settlement account or stablecoin wallet.
  </Card>

  <Card title="Get Account" icon="magnifying-glass" href="/api/accounts/get">
    Retrieve the details and balance of an account or wallet.
  </Card>
</CardGroup>
