Skip to main content
GET
/
v1
/
users
/
{userId}
/
statements
List statements
curl --request GET \
  --url https://api.ledger.so/v1/users/{userId}/statements \
  --header 'Api-Key: <api-key>'
{
  "data": [
    {
      "object": "statement",
      "id": "<string>",
      "userId": "<string>",
      "periodStart": 123,
      "periodEnd": 123,
      "totalSpent": 123,
      "transactionCount": 123,
      "type": "monthly",
      "createdAt": 123
    }
  ],
  "hasMore": true,
  "cursor": "<string>"
}

Authorizations

Api-Key
string
header
required

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

Path Parameters

userId
string
required

The user ID

Query Parameters

limit
integer
default:20

Number of items per page (max 100)

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

Pagination cursor from previous response

Response

Statement list

data
object[]
required
hasMore
boolean
required
cursor
string | null