# Get Lead Stage List

## Get Lead Stage List

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

Get a list of lead stages.

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

```
{
    "meta": {
        "totalResults": 1,
        "start": 0,
        "perPage": 10,
        "count": 1
    },
    "results": [
        {
            "id": 1,
            "name": "Quoted",
            "reasons": []
        },
        {
            "id": 6,
            "name": "Won",
            "reasons": [
                {
                    "id": 11,
                    "reason": "Price under budget"
                },
                {
                    "id": 12,
                    "reason": "Repeat client"
                }
            ]
        },
    ]
}
```

{% 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 stages 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.
