---
title: "Add a price to a plan"
method: POST
path: "/api/plans/{id}/prices"
tags: ["Plans"]
---

# Add a price to a plan

`POST /api/plans/{id}/prices`

Add a price in a specific currency to a plan. Each plan can have one price per currency.

## Path parameters

- `id` string, required

## Request body

- CreatePlanPriceDto
  - `currency` string, required — ISO currency code
  - `amount` number, required — Price amount

## Response `201`

Price added to plan

- PlanPriceResponse
  - `id` string, required
  - `planId` string, required
  - `currency` string, required
  - `amount` string, required — Decimal amount as string
  - `isActive` boolean, required
  - `createdAt` string, required
  - `updatedAt` string, required

## Other responses

- `404` — Plan not found

---

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