# Get Lead Channel List

## Get Lead Channel List

<mark style="color:green;">`POST`</mark> `[PlatformAddress]/api/1.0/crm?action=getLeadChannelList`

Get a list of lead channels.

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

```
{
    "meta": {
        "totalResults": 1,
        "start": 0,
        "perPage": 10,
        "count": 4
    },
    "results": [
        {
            "id": 1,
            "name": "iVvy Marketplace"
        },
        {
            "id": 2,
            "name": "Website Booking Engine"
        },
        {
            "id": 3,
            "name": "Third Party Booking Engines"
        },
        {
            "id": 4,
            "name": "Magazine Ad"
        },
    ]
}
```

{% endtab %}
{% endtabs %}

The result from this call will be a [collection](https://developer.ivvy.com/getting-started/interpreting-the-response/collections) of all the lead channels the user has access to. This call also accepts the [pagination](https://developer.ivvy.com/getting-started/interpreting-the-response/pagination) and [filter](https://developer.ivvy.com/getting-started/interpreting-the-response/filtering) properties.
