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

> Get transaction submission history and status for all transactions submitted through the transaction manager.

# Transaction History



## OpenAPI

````yaml cardano/transaction-manager-api/openapi.json get /txmanager/history
openapi: 3.0.3
info:
  title: Cardano - Transaction Manager API
  description: Cardano Transaction Submit API with advanced monitoring.
  contact:
    name: Maestro Blockchain Inc.
    url: https://gomaestro.org/
    email: info@gomaestro.org
  license:
    name: Apache 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0.txt
  version: v1.7.0
servers:
  - url: https://mainnet.gomaestro-api.org/v1
    description: Cardano Mainnet
  - url: https://preprod.gomaestro-api.org/v1
    description: Cardano Preprod
  - url: https://preview.gomaestro-api.org/v1
    description: Cardano Preview
security:
  - api-key: []
tags:
  - name: Transactions
  - name: Webhooks
paths:
  /txmanager/history:
    get:
      tags:
        - Transactions
      summary: Transaction History
      description: Retrieve a paginated list of historical transactions.
      operationId: get_transaction_history
      parameters:
        - name: count
          in: query
          description: Number of transactions per page.
          schema:
            type: integer
            default: 100
            minimum: 1
        - name: page
          in: query
          description: Page number.
          schema:
            type: integer
            default: 1
            minimum: 1
      responses:
        '200':
          description: Transaction history retrieved successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedTransactionHistory'
        '400':
          description: Bad Request - Invalid pagination parameters
        '500':
          description: Internal server error
components:
  schemas:
    PaginatedTransactionHistory:
      type: object
      properties:
        transactions:
          type: array
          items:
            $ref: '#/components/schemas/TransactionState'
        page:
          type: integer
        total_count:
          type: integer
    TransactionState:
      type: object
      properties:
        tx_hash:
          type: string
          description: Transaction hash
        status:
          type: string
          enum:
            - pending
            - confirmed
            - failed
        confirmations:
          type: integer
          description: Number of confirmations
  securitySchemes:
    api-key:
      type: apiKey
      in: header
      name: api-key
      description: API key for authenticating requests.

````