> ## Documentation Index
> Fetch the complete documentation index at: https://docs.equated.co/llms.txt
> Use this file to discover all available pages before exploring further.

# Get one journal entry

> A single entry with full postings (signed amounts in posting currency plus base-currency mirrors), its origin, and whether it is eligible for `void_journal_entry`.



## OpenAPI

````yaml /openapi.json get /api/journal-entries/{id}
openapi: 3.1.0
info:
  title: Equated API
  version: 1.0.0
  description: >-
    Agent-facing accounting API. Authenticate with a bearer token issued from
    Settings → API Tokens, or via the in-app session cookie when called from the
    web client.
servers:
  - url: https://app.equated.co
    description: API server
security: []
paths:
  /api/journal-entries/{id}:
    get:
      tags:
        - Journal Entries
      summary: Get one journal entry
      description: >-
        A single entry with full postings (signed amounts in posting currency
        plus base-currency mirrors), its origin, and whether it is eligible for
        `void_journal_entry`.
      parameters:
        - schema:
            type: integer
            minimum: 0
            exclusiveMinimum: true
          required: true
          name: id
          in: path
      responses:
        '200':
          description: The journal entry
          content:
            application/json:
              schema:
                type: object
                properties:
                  entry:
                    $ref: '#/components/schemas/GeneralLedgerEntry'
                required:
                  - entry
        '404':
          description: Not found
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                required:
                  - error
      security:
        - bearerAuth: []
components:
  schemas:
    GeneralLedgerEntry:
      type: object
      properties:
        id:
          type: number
        effectiveAt:
          type: string
        description:
          type: string
          nullable: true
        status:
          type: string
          enum:
            - DRAFT
            - POSTED
            - VOID
        source:
          type: string
          nullable: true
        baseCurrency:
          type: string
        correctsJournalEntryId:
          type: number
          nullable: true
        postings:
          type: array
          items:
            type: object
            properties:
              accountId:
                type: number
              accountName:
                type: string
              accountType:
                type: string
                enum:
                  - ASSET
                  - LIABILITY
                  - EQUITY
                  - INCOME
                  - EXPENSE
              accountEmoji:
                type: string
                nullable: true
              institutionLogo:
                type: string
                nullable: true
              institutionName:
                type: string
                nullable: true
              institutionUrl:
                type: string
                nullable: true
              amount:
                type: string
                description: Signed amount in the posting currency (debit positive).
              currency:
                type: string
              amountBase:
                type: string
              isBankLeg:
                type: boolean
              orgMerchantId:
                type: number
                nullable: true
              projectId:
                type: number
                nullable: true
                description: >-
                  The project this line counts toward. Only income and expense
                  lines carry one, and a project scope counts only lines on it.
              inScope:
                type: boolean
                description: >-
                  On a project-scoped ledger: whether this line counts toward
                  the scope.
              requiresCounterparty:
                type: boolean
            required:
              - accountId
              - accountName
              - accountType
              - accountEmoji
              - institutionLogo
              - institutionName
              - institutionUrl
              - amount
              - currency
              - amountBase
              - isBankLeg
        origin:
          type: object
          properties:
            kind:
              type: string
              enum:
                - transaction
                - bill
                - invoice
                - receipt
                - reimbursement
                - integration
                - manual
                - system
                - unknown
            label:
              type: string
            providerTransactionId:
              type: string
            documentId:
              type: number
            documentType:
              type: string
          required:
            - kind
            - label
        counterparty:
          type: object
          nullable: true
          properties:
            orgMerchantId:
              type: number
            name:
              type: string
            website:
              type: string
              nullable: true
            imageUrl:
              type: string
              nullable: true
            logo:
              type: string
              nullable: true
          required:
            - orgMerchantId
            - name
            - website
            - imageUrl
            - logo
          description: Who the money moved to or from, when the entry attributes one.
        canVoid:
          type: boolean
      required:
        - id
        - effectiveAt
        - description
        - status
        - source
        - baseCurrency
        - correctsJournalEntryId
        - postings
        - origin
        - counterparty
        - canVoid
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API token issued from the Equated app under Settings → API Tokens.

````