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

# List (Active) Plans

> The API to list active plans

## Request

**Request type**: GET

**URL**: `{{baseUrl}}/api/v1/plans`

**Body**: *None*

### Constraints

*None*

## Success Response

**HTTP code**: 200 (OK)

**Body**: This response shows an example/dummy response.

```json theme={null}
{
	"plans": [
		{
			"id": "45e46575-bf1d-4667-8acc-8b0ade8441e1",
			"name": "Free",
			"description": "The free plan for people who want to try before they trust. ",
			"features": [
				"5 GB Cloud Storage",
				"2 Guests"
			],
			"prices": [
				{
					"currency": "INR",
					"interval": 1,
					"amount_cents": 1000,
					"frequency": "monthly"
				}
			]
		},
		{
			"id": "9afb7604-4e37-4698-a44b-21f221616ecf",
			"name": "Student",
			"description": "Plan for College students",
			"features": [
				"20 GB Cloud Storage",
				"8 Guest Accounts",
				"24 Hours of Compute / Month"
			],
			"prices": []
		}
	]
}
```

**Meaning of Response field values**:

| Field                | Expected Value                                                                     | Remarks                                                         |
| -------------------- | ---------------------------------------------------------------------------------- | --------------------------------------------------------------- |
| plans                | List of active plans against the merchant                                          | It is an array                                                  |
| plans\[n].id         | The plan ID (UUID of the plan)                                                     | You can use this in places where a Plan ID is required.         |
| plans\[n].name       | The friendly name of the plan                                                      | This is the name that customer would see on the Billing Portal. |
| plan\[n].description | Description of the plan as set by the merchant                                     |                                                                 |
| plan\[n].features    | Array of "Marketing Feature" values that were set by the merchant on the Platform. | It is an array of strings.                                      |
| plan\[n].prices      | Array of pricing objects (only active prices are shown here)                       | An array of pricing objects                                     |
