> For the complete documentation index, see [llms.txt](https://developers.meldapi.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developers.meldapi.io/connections/list-connections.md).

# List

## List Connections

<mark style="color:blue;">`GET`</mark> `https://api.meldapi.io/api/public/v1/connections/index`

This endpoint allows you to get free cakes.

#### Query Parameters

| Name     | Type   | Description    |
| -------- | ------ | -------------- |
| team\_id | number | Filter by team |

#### Headers

| Name          | Type   | Description          |
| ------------- | ------ | -------------------- |
| Authorization | string | Bearer \<API\_TOKEN> |

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

```
[
    {
        "id": 5,
        "name": "Test MailChimp 1",
        "type": "mailchimp",
        "team_id": 1,
        "team": {
            "id": 1,
            "name": "Team Number 1"
        }
        "user_id": 1,
        "created_at": "2021-09-28T19:44:16.016Z",
        "updated_at": "2021-09-28T19:44:16.016Z",
        "meta": {}
    },
    {
        "id": 35,
        "name": "Test PDF Connection",
        "type": "pdf",
        "team_id": 1,
        "team": {
            "id": 2,
            "name": "Team Number 2"
        }        
        "user_id": 1,
        "created_at": "2022-08-27T20:44:35.468Z",
        "updated_at": "2022-08-27T20:44:35.468Z",
        "meta": {}
    }
```

{% endtab %}

{% tab title="401 Unauthorized access." %}

```
{
    "errors": [
        {
            "message": "E_UNAUTHORIZED_ACCESS: Unauthorized access"
        }
    ]
}
```

{% endtab %}
{% endtabs %}
