---
title: "Fetch a plan"
method: GET
path: "/plans/{id}"
tags: ["Plans"]
---

# Fetch a plan

`GET /plans/{id}`

Get details of a specific billing plan.

## Path parameters

- `id` string, required

## Response `200`

Plan details.

- Plan — A billing plan defining the recurring charge amount and frequency. Reusable across multiple subscriptions.
  - `id` string — Plan ID. Prefix: plan_
  - `entity` 'plan'
  - `interval` integer — Number of periods between charges. For daily period, minimum interval is 7.
  - `period` 'daily' | 'weekly' | 'monthly' | 'quarterly' | 'yearly' — Billing frequency unit. daily requires interval ≥ 7.
  - `item` Item — A reusable catalog item used in invoice line items.
    - `id` string — Item ID. Prefix: item_
    - `entity` 'item'
    - `active` boolean — Whether the item is active and available for use in new invoices.
    - `amount` integer — Item price in paise (smallest INR unit).
    - `unit_amount` integer — Per-unit price in paise.
    - `currency` string
    - `name` string — Display name of the item.
    - `description` string
    - `created_at` integer
  - `notes` Notes — Key-value pairs for storing custom metadata. Maximum 15 pairs. Each key and value must not exceed 256 characters.
  - `created_at` integer

## Other responses

- `401` — Authentication failed. Invalid or missing API key credentials.
- `404` — Resource not found.
- `429` — Rate limit exceeded. Implement exponential backoff with jitter before retrying.

---

[API](https://skmtc.net/curlec/apis/razorpay-api.md) · [All operations](https://skmtc.net/curlec/apis/razorpay-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/curlec/razorpay-api/revisions/824ca9e6faef/schema)
