---
title: "Create Budget"
method: POST
path: "/open-api/v3/budgets"
tags: ["Budgets"]
---

# Create Budget

`POST /open-api/v3/budgets`

## Request body

- BudgetReqDTO
  - `accountId` string, uuid, required — The UUID of the account.
  - `name` string, required — Budget name.

## Response `200`

OK

- BudgetResponse — budget resources
  - `code` string — Return code
  - `message` string — Error message
  - `data` Budget — Returned data
    - `id` string, required — The UUID of the budget.
    - `accountId` string, required — The UUID of the account.
    - `createTime` string, timestamp, required — Creation time timestamp.
    - `name` string, required — Budget name.
    - `balance` BudgetBalance, required — The Balance of the Budget.
      - `id` string, required — The UUID of the Balance.
      - `available` string, required — Available balance.
      - `currency` string, required — The currency of the Balance.
    - `status` 'ACTIVE' | 'INACTIVE' | 'FROZEN', required — Budget status.

## Other responses

- `400` — Bad Request

---

[API](https://skmtc.net/interlace/apis/core-resource.md) · [All operations](https://skmtc.net/interlace/apis/core-resource/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/interlace/core-resource/revisions/29c08a4da357/schema)
