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

# Get Fee Schedules

> Returns the fee schedules configured for a clinic.

A clinic can have multiple fee schedules (for example a Master schedule, a
Medicare schedule, and a Self-Pay schedule). The CPT/HCPCS catalog is shared
across schedules, so each code appears in every schedule with that schedule's own
charge and allowed amounts.

This endpoint returns the schedule **headers** with an item count. To read the
per-code pricing for a schedule, use its `id` with
[Get Fee Schedule Items](/api-reference/fee-schedules/items).

### Example Request

```bash theme={null}
curl -X GET https://api.usecobalt.com/v1/fee-schedules \
-H 'Content-Type: application/json' \
-H 'client_id: ci_live_198908HJDKJSH98789OHKJL' \
-H 'client_secret: cs_live_9827hofdsklOYYHJLJh' \
-H 'access_token: 493JKLHIU98789hLKH9HHJH'
```

### Example Response

```json theme={null}
{
    "success": true,
    "fee_schedules": [
        {
            "id": "abc123def4567890abcdef1234567890",
            "emr_id": "2",
            "name": "2014 Medicare Fee Schedule",
            "description": "Medicare Fee Schedule - 2014",
            "sub_name": "Medicare Fee Schedule - 2014",
            "is_master": false,
            "taxable": false,
            "effective_from": "2014-01-01",
            "effective_to": "2034-12-31",
            "item_count": 2624
        },
        {
            "id": "def456abc7890123def456abc7890123",
            "emr_id": "1",
            "name": "Master Fee Schedule",
            "description": "",
            "sub_name": "",
            "is_master": true,
            "taxable": false,
            "effective_from": null,
            "effective_to": null,
            "item_count": 2624
        }
    ]
}
```

### Response Parameters

* **id**: Cobalt's fee schedule identifier. Use this in the items endpoint path.
* **emr\_id**: The fee schedule identifier as it appears in the EMR.
* **name** / **description** / **sub\_name**: Labels from the EMR.
* **is\_master**: Whether this is the master fee schedule.
* **taxable**: Whether the schedule is marked taxable.
* **effective\_from** / **effective\_to**: The schedule's effective date range (either may be `null`). Useful for cross-referencing a historical claim against the schedule that was in effect at the time.
* **item\_count**: Number of priced codes in the schedule.


## OpenAPI

````yaml GET /fee-schedules
openapi: 3.0.0
info:
  title: Cobalt API
  version: 1.0.1
  description: API for interacting with Cobalt's EHR integration services
servers:
  - url: https://api.usecobalt.com/v1
security:
  - ClientCredentials: []
    ClientSecret: []
    AccessToken: []
paths:
  /fee-schedules:
    get:
      tags:
        - Fee Schedules
      summary: List fee schedules
      description: >-
        Returns the fee schedule headers (e.g. Master, Medicare, Self-Pay) for
        your organization, each with a count of its line items. Use the schedule
        id with the items endpoint to page through its per-code pricing.
      operationId: getFeeSchedules
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  fee_schedules:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          description: >-
                            Cobalt fee schedule ID (UUID without dashes). Use
                            this for the items endpoint.
                        emr_id:
                          type: string
                          description: The fee schedule ID as it appears in the EMR system
                        name:
                          type: string
                          description: Fee schedule name
                        description:
                          type: string
                          description: Fee schedule description
                        sub_name:
                          type: string
                          description: Secondary name from the EMR, if any
                        is_master:
                          type: boolean
                          description: Whether this is the master fee schedule
                        taxable:
                          type: boolean
                          description: Whether the schedule is marked taxable
                        effective_from:
                          type: string
                          format: date
                          description: Date the schedule becomes effective (nullable)
                        effective_to:
                          type: string
                          format: date
                          description: Date the schedule expires (nullable)
                        item_count:
                          type: integer
                          description: Number of line items (priced codes) in this schedule
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  message:
                    type: string
components:
  securitySchemes:
    ClientCredentials:
      type: apiKey
      in: header
      name: client_id
    ClientSecret:
      type: apiKey
      in: header
      name: client_secret
    AccessToken:
      type: apiKey
      in: header
      name: access_token

````