Skip to main content
GET
/
v1
/
rake
/
ledger
List rake ledger entries
curl --request GET \
  --url https://api.ledger.so/v1/rake/ledger \
  --header 'Api-Key: <api-key>'
{
  "data": [
    {
      "id": "<string>",
      "amount": 123,
      "balance": 123,
      "type": "fee",
      "createdAt": 123,
      "transactionId": "<string>",
      "description": "<string>"
    }
  ],
  "hasMore": true,
  "object": "list",
  "cursor": "<string>"
}

Authorizations

Api-Key
string
header
required

API key for authentication. Get your key from the Dashboard.

Query Parameters

limit
integer
default:25

Maximum number of entries to return (max 100)

Required range: 1 <= x <= 100
cursor
string

Pagination cursor

Response

List of ledger entries

data
object[]
required
hasMore
boolean
required
object
string
Example:

"list"

cursor
string | null

Cursor for next page