Skip to content

List

List events
get/v1/events

List all events.

Query Parameters
beginstring
optional

Date string in RFC 3339 format. Only entries created after the specified time will be included. UTC time zone.

formatdate-time
endstring
optional

Date string in RFC 3339 format. Only entries created before the specified time will be included. UTC time zone.

formatdate-time
ending_beforestring
optional

A cursor representing an item's token before which a page of results should end. Used to retrieve the previous page of results before this item.

event_typesarray of enum
optional

Event types to filter events by.

maxLength10
Hide ParametersShow Parameters
"account_holder.created"
"account_holder.updated"
"account_holder.verification"
"auth_rules.performance_report.created"
"balance.updated"
"book_transfer_transaction.created"
"card.created"
"card.renewed"
"card.reissued"
"card.converted"
"card.shipped"
"card_transaction.updated"
"digital_wallet.tokenization_approval_request"
"digital_wallet.tokenization_result"
"digital_wallet.tokenization_two_factor_authentication_code"
"digital_wallet.tokenization_two_factor_authentication_code_sent"
"digital_wallet.tokenization_updated"
"dispute.updated"
"dispute_evidence.upload_failed"
"external_bank_account.created"
"external_bank_account.updated"
"external_payment.created"
"external_payment.updated"
"financial_account.created"
"financial_account.updated"
"funding_event.created"
"loan_tape.created"
"loan_tape.updated"
"management_operation.created"
"management_operation.updated"
"payment_transaction.created"
"payment_transaction.updated"
"internal_transaction.created"
"internal_transaction.updated"
"settlement_report.updated"
"statements.created"
"three_ds_authentication.created"
"three_ds_authentication.updated"
"tokenization.approval_request"
"tokenization.result"
"tokenization.two_factor_authentication_code"
"tokenization.two_factor_authentication_code_sent"
"tokenization.updated"
page_sizenumber
optional

Page size (for pagination).

maximum100
minimum1
starting_afterstring
optional

A cursor representing an item's token after which a page of results should begin. Used to retrieve the next page of results after this item.

with_contentboolean
optional

Whether to include the event payload content in the response.

Returns
dataarray of tokenstringcreatedstringevent_typeenumpayloadRecord<string, unknown>Event
has_moreboolean
Request example Request
curl https://api.lithic.com/v1/events \
    -H "Authorization: $LITHIC_API_KEY"
200 Example
{
  "data": [
    {
      "token": "msg_1srOrx2ZWZBpBUvZwXKQmoEYga1",
      "created": "2019-12-27T18:11:19.117Z",
      "event_type": "account_holder.created",
      "payload": {}
    }
  ],
  "has_more": true
}