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

List Ledgers

GET /v1/ledgers

Returns information about a specific ledger.

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer API Key

Response

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

Last updated