# Deposit

Use authenticated account access for this endpoint.

### Get Deposit Address

```
GET /api/deposit/usdc-address
```

#### Example request

Use the wallet service host for this endpoint.

{% code title="get\_deposit\_address.sh" %}

```bash
curl "https://wallet-mutator-view.outpoll.com/api/deposit/usdc-address" \
  -H "Authorization: Bearer <token>"
```

{% endcode %}

#### Response `200 OK`

```json
{
  "i": "078dcd98-928d-479f-8110-ff6d27e44de2",
  "a": "0x1234567890abcdef1234567890abcdef12345678"
}
```

| Field | Type   | Description                |
| ----- | ------ | -------------------------- |
| i     | string | Asset ID                   |
| a     | string | Blockchain deposit address |

#### Response `404 Not Found`

Address has not been generated yet.
