> 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/retrieve-ledger.md).

# Retrieve Ledger

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

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": {
        "id": "led_01J9T3M2X5AB7C8D9EFGH12345",
        "name": "Production Ledger",
        "status": "ACTIVE",
        "metadata": {
            "environment": "production"
        },
        "created_at": "2026-08-05T14:12:18.462Z"
    }
}
```

{% endtab %}
{% endtabs %}
