> 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-1.md).

# Get

## Get Melds

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

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

#### 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
    }
```

{% endtab %}

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

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

{% endtab %}
{% endtabs %}
