---
title: "List booking transactions"
method: GET
path: "/bookings/{code}/transactions.json"
tags: ["Booking Endpoints"]
---

# List booking transactions

`GET /bookings/{code}/transactions.json`

Returns all money log transactions for the specified booking, ordered by most recent first.

This includes payments, refunds, credit notes, and other financial transactions
associated with the booking.

## Path parameters

- `code` string, required

## Headers

- `Authorization` string, required

## Response `200`

successful operation

- MoneyLog[]
  - `id` integer — Unique identifier for the money log entry
  - `source` string — The source/type of the transaction
  - `amount` integer — Transaction amount in cents/pence
  - `currency_code` string — Currency code (e.g., GBP, USD, EUR)
  - `created_at` integer — Unix timestamp when the transaction was created
  - `display_amount` string — Formatted amount with currency symbol
  - `refund` boolean — Whether this transaction is a refund
  - `success` boolean — Whether the transaction was successful
  - `title` string — Display title for the transaction
  - `description` string, nullable — Description of the transaction (for credit notes)
  - `manual_type` string, nullable — Type of manual transaction (for credit notes)

## Other responses

- `401` — Unauthorized - Invalid API key
- `404` — Not found - Booking was not found

---

[API](https://skmtc.net/jammed-org/apis/jammed-bookings-api.md) · [All operations](https://skmtc.net/jammed-org/apis/jammed-bookings-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/jammed-org/jammed-bookings-api/versions/3fc6a6f91b06/schema)
