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

# Create price

> Create a new price for an existing Stripe product.

{/* Tool: create_stripe_price */}

Optionally creates a payment link.

## Parameters

<ParamField path="product_id" type="string" required={true}>
  Existing Stripe product ID (e.g., "prod\_...")
</ParamField>

<ParamField path="amount_cents" type="number" required={true}>
  Price in cents (e.g., 2500 for \$25.00)
</ParamField>

<ParamField path="currency" type="string" default={"usd"}>
  Currency code (default: "usd")
</ParamField>

<ParamField path="recurring" type="object" default={{}}>
  For subscriptions, provide interval info (e.g., `{"interval": "month", "interval_count": 1}`)
</ParamField>

<ParamField path="create_payment_link" type="boolean" default={true}>
  Whether to create a payment link for this price (default: true)
</ParamField>

<ParamField path="redirect_url" type="string" default={""}>
  URL to redirect customer to after payment (mutually exclusive with hosted\_confirmation\_message)
</ParamField>

<ParamField path="hosted_confirmation_message" type="string" default={""}>
  Custom message for Stripe's hosted confirmation page (mutually exclusive with redirect\_url)
</ParamField>

<ParamField path="testmode" type="boolean" default={false}>
  Use test mode (default: false)
</ParamField>
