> For the complete documentation index, see [llms.txt](https://docs.patascore.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.patascore.com/financial-education-1/subscriptions/fetch-modules-by-program-identifier.md).

# Pricing Options

Allows user to get pricing options

<mark style="color:blue;">`GET`</mark> `{{BASE_URL}}/api/subscriptions/pricing`

#### Headers

| Name           | Type   | Description                                                    |
| -------------- | ------ | -------------------------------------------------------------- |
| Authentication | string | Authentication token to track down who is emptying our stocks. |

{% tabs %}
{% tab title="200 OK" %}

```json
{
  "status": 200,
  "response_code": 0,
  "success": true,
  "errors": [],
  "message": "Pricing retrieved successfully",
  "data": {
    "individual_courses": [
      {
        "id": 45,
        "name": "Personal Finance Fundamentals",
        "price": 2500.0,
        "description": "Master the basics of personal finance"
      },
      {
        "id": 46,
        "name": "Investment Strategies",
        "price": 3500.0,
        "description": "Learn advanced investment techniques"
      },
      {
        "id": 47,
        "name": "Business Finance",
        "price": 4000.0,
        "description": "Financial management for entrepreneurs"
      }
    ],
    "bundle": {
      "price": 10000.0,
      "course_count": 3,
      "course_ids": [45, 46, 47],
      "course_names": [
        "Personal Finance Fundamentals",
        "Investment Strategies", 
        "Business Finance"
      ],
      "description": "Get access to all 3 courses"
    },
    "user_owned_count": 0,
    "total_paid_courses": 3,
    "available_courses_count": 3
  }
}
```

{% endtab %}

{% tab title="401 Authentication Failed" %}

```json
{
  "status": 401,
  "response_code": 0,
  "success": false,
  "errors": [
    "No token provided"
  ],
  "message": "No token, Authorization denied"
}
```

{% endtab %}
{% endtabs %}
