For the complete documentation index, see llms.txt. This page is also available as Markdown.

Retrieve Ledger

GET /v1/ledgers/{ledger_id}

Returns information about a specific ledger.

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer API Key

Response

{
    "statusCode": 200,
    "statusMessage": "Success",
    "payload": {
        "id": "led_01J9T3M2X5AB7C8D9EFGH12345",
        "name": "Production Ledger",
        "status": "ACTIVE",
        "metadata": {
            "environment": "production"
        },
        "created_at": "2026-08-05T14:12:18.462Z"
    }
}

Last updated