---
title: "Fund account"
method: POST
path: "/deposits/fund"
tags: ["Deposits"]
---

# Fund account

`POST /deposits/fund`

Funds a specified fiat account in the zerohash CERT environment. This is helpful when automating end-to-end testing or manually validating a feature. Not available in production.

## Headers

- `X-SCX-SIGNED` string, required
- `X-SCX-TIMESTAMP` string, required

## Request body

- PostDepositsFundBody
  - `participant_code` string, required — A participant linked to your platform whose fiat account should be funded.
  - `asset` string, required — The fiat asset to fund (e.g. `USD`). Must be a supported fiat currency.
  - `amount` string, required — The amount to fund. Must have at most two decimal places.
  - `account_label` string — Optional account label to fund. Defaults to `general` when omitted. Specify `account_label` when funding a rewards or awards float account.

## Response `201`

Successfully funded fiat account.

- PostDepositsFundResponse
  - `message` PostDepositsFundEntity
    - `participant_code` string — The participant whose account was funded.
    - `asset` string — The asset code that was deposited (e.g. `USD`).
    - `amount` string — The amount that was deposited into the account.
    - `account_label` string — The account label that received the deposit.
    - `account_group` string — The account group that received the deposit. Matches the calling platform’s participant code.
    - `account_type` 'available' | 'collateral' | 'payable' | 'receivable' | 'collateral_deficiency' | 'staked' — The account type the deposit was credited to. Always `available` for `/deposits/fund`.
    - `reference_id` string, uuid — Server-generated UUID v4 that uniquely identifies this funding request.

## Other responses

- `400` — Bad Request
- `403` — Forbidden
- `404` — Not Found
- `500` — Internal Server Error
- `503` — Service Unavailable

---

[API](https://skmtc.net/zerohash/apis/zerohash-api.md) · [All operations](https://skmtc.net/zerohash/apis/zerohash-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/zerohash/zerohash-api/versions/8b647d934363/schema)
