Skip to main content
GET
/
transactions
/
{id}
Get transaction
curl --request GET \
  --url https://api.ledgerbeam.com/v1/transactions/{id} \
  --header 'API-KEY: <api-key>'
{
  "id": "ee02c3be-3825-449c-a35f-7b7cc47675e8",
  "entity": {
    "id": "6890b942-df95-43f5-8f38-a5dcee46d24a",
    "name": "Apple",
    "type": "merchant",
    "website": "https://www.apple.com",
    "logo": "https://logos.ledgerbeam.com/www.apple.com",
    "description": "Apple is a multinational technology company...",
    "intermediaries": []
  },
  "category": {
    "primary": "Entertainment",
    "secondary": [
      "Streaming Service",
      "Digital Content"
    ],
    "accounting_category": "Subscriptions",
    "tags": [
      "streaming",
      "digital-content"
    ]
  },
  "location": {
    "address": "1 Infinite Loop, Cupertino, CA 95014, USA",
    "street": "1 Infinite Loop",
    "city": "Cupertino",
    "state": "California",
    "country": "United States",
    "country_code": "US",
    "postal_code": "95014",
    "latitude": 37.33182,
    "longitude": -122.03118,
    "maps": {
      "google_maps_url": "https://www.google.com/maps/search/?api=1&query=1+Infinite+Loop,+Cupertino,+CA+95014+USA",
      "apple_maps_url": "https://maps.apple.com/?q=1+Infinite+Loop,+Cupertino,+CA+95014+USA",
      "waze_url": "https://waze.com/ul?q=1+Infinite+Loop,+Cupertino,+CA+95014+USA"
    }
  },
  "recurrence": {
    "is_recurring": true,
    "frequency": "monthly",
    "next_occurrence": "2025-07-24",
    "confidence_score": 0.95
  },
  "confidence_score": 0.95
}

Overview

Retrieve detailed information about a specific transaction by its ID. This endpoint returns the complete enriched transaction data including entity identification, categorization, location, and recurrence analysis.
  • Transaction Details: Get complete information about a specific transaction
  • Audit Trail: Retrieve transaction details for compliance and auditing
  • Integration: Fetch detailed transaction data for external systems
  • Analysis: Access enriched data for business intelligence and reporting

Authorizations

API-KEY
string
header
required

API key for authentication

Path Parameters

id
string
required

Transaction ID

Response

Transaction retrieved successfully

id
string

Transaction ID

Example:

"ee02c3be-3825-449c-a35f-7b7cc47675e8"

entity
object
category
object
location
object
recurrence
object
confidence_score
number

Overall confidence score for the enrichment

Example:

0.95