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

# Get All Transactions

> Retrieve a list of transactions for the authenticated organization. You can optionally filter by transaction type (e.g., inflow, outflow), date range, and entity.

Returns a paginated list of transactions. This endpoint is useful for analytics, dashboards, and reconciliation processes.

**Query Parameters:**

* `type` – Filter by transaction type: `inflow` or `outflow`
* `start_date` / `end_date` – Filter by transaction date range (ISO 8601 format)
* `entity_id` – Filter transactions belonging to a specific entity
* `limit` – Max number of records to return (default: 50)
* `offset` – Pagination offset (default: 0)

**Response:**

Returns an array of `Transaction` objects, each including line items, tax information, source integration, and associated metadata.


## OpenAPI

````yaml GET /transactions
openapi: 3.0.1
info:
  title: Antei API Reference
  description: >-
    Programmatic access to Antei’s platform. Use this API to manage core objects
    and retrieve taxation insights.
  version: 1.0.0
  license:
    name: MIT
  contact:
    name: Antei Developer Support
    email: support@antei.com
    url: https://antei.com
servers:
  - url: https://api.antei.com
security:
  - bearerAuth: []
paths:
  /transactions:
    get:
      summary: Get All Transactions
      description: Returns all transactions for your organization.
      parameters:
        - name: transaction_type
          in: query
          description: 'Filter by transaction type: inflow or outflow'
          required: false
          schema:
            type: string
            enum:
              - inflow
              - outflow
        - name: limit
          in: query
          description: Maximum number of transactions to return
          required: false
          schema:
            type: integer
            format: int32
      responses:
        '200':
          description: List of transactions
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Transaction'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Transaction:
      type: object
      required:
        - id
        - transaction_type
        - amount
        - currency
        - timestamp
      properties:
        id:
          type: string
          description: Unique identifier for the transaction
        transaction_type:
          type: string
          enum:
            - inflow
            - outflow
          description: Direction of the transaction
        amount:
          type: number
          format: float
          description: Transaction amount
        currency:
          type: string
          description: Currency code (e.g., USD, EUR)
        timestamp:
          type: string
          format: date-time
          description: Time of transaction
        description:
          type: string
          description: Optional description of the transaction
    Error:
      type: object
      properties:
        error:
          type: string
        message:
          type: string
        status:
          type: integer
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````