> For the complete documentation index, see [llms.txt](https://docs.senmo.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.senmo.io/segment-ledger/ledger/list-ledgers.md).

# List Ledgers

<mark style="color:green;">`GET`</mark> `/v1/ledgers`

Returns information about a specific ledger.

**Headers**

| Name          | Value              |
| ------------- | ------------------ |
| Content-Type  | `application/json` |
| Authorization | `Bearer API Key`   |

**Response**

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

```json
{
    "statusCode": 200,
    "statusMessage": "Success",
    "payload": {
        "items": [
            {
                "id": "led_01",
                "name": "Production"
            },
            {
                "id": "led_02",
                "name": "Sandbox"
            }
        ],
        "pagination": {
            "has_more": false
        }
    }
}
```

{% endtab %}
{% endtabs %}
