> 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/melds/verify-email-address.md).

# List

## List Melds

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

This endpoint allows you to search the Australian company and business name register.

#### Query Parameters

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

#### Headers

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

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

```json
[
    {
        "id": 1,
        "name": "Airtable OpenAI",
        "team": {
            "id": 2,
            "name": "Team Number 1"
        },
        "connections": {
            "src": {
                "id": 1,
                "name": "Airtable Test",
                "type": "airtable",
                "dataType": "table",
            },
            "dst": {
                "id": 2,
                "name": "Test AI",
                "type": "openai",
                "dataType": "openai",
            },
        },
        "created_at": "2022-12-15T05:57:30.187Z",
        "updated_at": "2023-01-12T02:33:41.738Z",
        "locked": false,
        "dst_deletion_policy": null
    },
    {
        "id": 2,
        "name": "Webflow",
        "team": {
            "id": 3,
            "name": "Team Number 2"
        },
        "connections": {
            "src": {
                "id": 1,
                "name": "Weblflow Test",
                "type": "webflow",
                "dataType": "collection"
            },
            "dst": {
                "id": 3,
                "name": "MailChimp",
                "type": "mailchimp",
                "dataType": "list"
            },
        },       
        "created_at": "2022-12-11T09:57:30.187Z",
        "updated_at": "2023-01-00T03:33:41.738Z",
        "locked": false,
        "dst_deletion_policy": null
    }
]
```

{% endtab %}

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

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

{% endtab %}
{% endtabs %}
