> 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/meldsyncs/processing.md).

# Processing

## List of Melds that are currently processing

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

This endpoint allows you to verify and retrieve a local or international phone number's details.

#### Query Parameters

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

#### Headers

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

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

```
[
    {
        "id": 629,
        "meld_id": 1,
        "status": "pending",
        "created_at": "2022-09-28T22:08:13.694Z",
        "updated_at": "2022-09-28T22:08:13.694Z",
        "errors": null,
        "webhook": false,
        "meld": {
            "id": 1,
            "name": "Test ST L -> L"
        }
    }
]
```

{% endtab %}

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

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

{% endtab %}
{% endtabs %}
