Get Journal Entries

get/v1/journal-entries/{journal_entry_id}

Fetches a single journal entrie by its public id within the active workspace. Read only, no side effects. Returns 404 when the id is unknown or falls outside the caller's workspace scope.

Requires a bearer token: Authorization: Bearer <token>.

Path parameters

NameTypeRequiredDescription
journal_entry_idstring <uuid>YesPublic UUID of the journal entrie.e.g. a7b8c9d0-0000-4000-8000-0000000000a7

Query parameters

NameTypeRequiredDescription
workspaceIdstring <uuid>NoExplicit workspace scope. The authenticated user must hold an active membership in this workspace. Defaults to the session workspace when omitted.e.g. a1b2c3d4-0000-4000-8000-000000000001

Request

cURL
curl -X GET https://api.wellapp.ai/v1/journal-entries/{journal_entry_id} \
  -H "Authorization: Bearer $WELL_API_TOKEN"

Responses

200The requested journal entrie.

{
  "data": {
    "type": "journal_entry",
    "id": "a7b8c9d0-0000-4000-8000-0000000000a7",
    "attributes": {
      "journal_entry_id": "a7b8c9d0-0000-4000-8000-0000000000a7",
      "entry_number": "BNK-2026-0041",
      "entry_date": "2026-04-27",
      "label": "Stripe payout",
      "fiscal_year": 2026,
      "fiscal_period": 4,
      "status": "posted",
      "validated_at": "2026-04-27T10:00:00Z",
      "created_at": "2026-04-27T09:16:00Z",
      "updated_at": "2026-04-27T10:00:00Z",
      "deleted_at": null
    },
    "relationships": {
      "journal": {
        "data": {
          "type": "journal",
          "id": "00000000-0000-4000-8000-000000000001"
        }
      },
      "validated_by": {
        "data": {
          "type": "people",
          "id": "00000000-0000-4000-8000-000000000001"
        }
      },
      "invoice_transaction": {
        "data": {
          "type": "invoice_transaction",
          "id": "00000000-0000-4000-8000-000000000001"
        }
      },
      "lines": {
        "data": [
          {
            "type": "journal_entry_line",
            "id": "00000000-0000-4000-8000-000000000001"
          }
        ]
      },
      "sourceWorkspaceConnector": {
        "data": {
          "type": "workspace_connector",
          "id": "00000000-0000-4000-8000-000000000001"
        }
      }
    }
  }
}

401Unauthorized

{
  "code": "UNAUTHORIZED",
  "status": 401,
  "title": "Unauthorized",
  "message": "See title.",
  "meta": {
    "trace_id": "a1b2c3",
    "log_id": "a1b2c3"
  }
}

404Not found

{
  "code": "NOT_FOUND",
  "status": 404,
  "title": "Not Found",
  "message": "See title.",
  "meta": {
    "trace_id": "a1b2c3",
    "log_id": "a1b2c3"
  }
}