---
title: "List all plans"
method: GET
path: "/plans"
tags: ["Plans"]
---

# List all plans

`GET /plans`

Retrieve all billing plans. Supports pagination.

## Query parameters

- `count` integer
- `skip` integer

## Response `200`

Collection of plans.

- object
  - `entity` 'collection'
  - `count` integer — Number of items in the current page.
  - `items` Plan[]
    - `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.
- `429` — Rate limit exceeded. Implement exponential backoff with jitter before retrying.

---

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