> For the complete documentation index, see [llms.txt](https://docs.payengine.co/payengine-api-v2.5/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.payengine.co/payengine-api-v2.5/fee-schedules/list-all-fee-schedules.md).

# List all fee schedules

## Get all fee schedules

<mark style="color:blue;">`GET`</mark> `https://<Platform-host>/api/fee-schedules`

{% tabs %}
{% tab title="200: OK " %}
{% tabs %}
{% tab title="Fee Schedule Field Definitions" %}

| Field Name           | Type   | Description                                                          | Required? |
| -------------------- | ------ | -------------------------------------------------------------------- | --------- |
| data                 | array  | Fee schedules                                                        | Required  |
| data\[i].id          | string | Fee schedule ID                                                      | Required  |
| data\[i].name        | string | Fee schedule name                                                    | Required  |
| data\[i].description | string | Description                                                          | Required  |
| data\[i].is\_default | string | Indicate that fee schedule is assigned to new onboarding application | Required  |
| data\[i].created\_at | string | Timestamp when fee schedule was created                              | Required  |
| data\[i].updated\_at | string | Timestamp when fee schedule was updated                              | Required  |
| {% endtab %}         |        |                                                                      |           |
| {% endtabs %}        |        |                                                                      |           |

```javascript
{
    "data": [
        {
            "id": "aba76907-2a1a-41cf-8501-5cd4ba1ff400",
            "name": "CUSTOMER_01: VS/MC/DS 2.9% + $.30; AMEX 3.4% + $.30; ACH 1% + 0.18; MONTHLY $20; PCI $79",
            "description": "VS/MC/DS 2.9% + $.30; AMEX 3.4% + $.30; ACH 1% + 0.18; MONTHLY $20; PCI $79",
            "is_default": true,
            "created_at": "2022-02-10T04:50:39.817Z",
            "updated_at": "2022-02-10T04:50:39.817Z"
        },
        {
            "id": "756a4758-14d7-4474-86bb-267039bf3802",
            "name": "INTERNAL_01: CC interchange + 0.3% + $.20; ACH $0.20; MONTHLY $20; PCI $79; NO REV Share",
            "description": "CC interchange + 0.3% + $.20; ACH $0.20; MONTHLY $20; PCI $79; NO REV Share",
            "is_default": false,
            "created_at": "2022-02-10T04:50:39.817Z",
            "updated_at": "2022-02-10T04:50:39.817Z"
        }
    ]
}
```

{% endtab %}
{% endtabs %}

{% tabs %}
{% tab title="cURL" %}

```
curl --location --request GET 'http://<Platform-host>/api/fee-schedules' \
--header 'Authorization: Basic <YOUR_API_SECRET>'
```

{% endtab %}

{% tab title="Response" %}

```javascript
{
    "data": [
        {
            "id": "aba76907-2a1a-41cf-8501-5cd4ba1ff400",
            "name": "CUSTOMER_01: VS/MC/DS 2.9% + $.30; AMEX 3.4% + $.30; ACH 1% + 0.18; MONTHLY $20; PCI $79",
            "description": "VS/MC/DS 2.9% + $.30; AMEX 3.4% + $.30; ACH 1% + 0.18; MONTHLY $20; PCI $79",
            "is_default": true,
            "created_at": "2022-02-10T04:50:39.817Z",
            "updated_at": "2022-02-10T04:50:39.817Z"
        },
        {
            "id": "756a4758-14d7-4474-86bb-267039bf3802",
            "name": "INTERNAL_01: CC interchange + 0.3% + $.20; ACH $0.20; MONTHLY $20; PCI $79; NO REV Share",
            "description": "CC interchange + 0.3% + $.20; ACH $0.20; MONTHLY $20; PCI $79; NO REV Share",
            "is_default": false,
            "created_at": "2022-02-10T04:50:39.817Z",
            "updated_at": "2022-02-10T04:50:39.817Z"
        }
    ]
}
```

{% endtab %}
{% endtabs %}
