> ## 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 detailed Dogecoin transaction information including inputs, outputs, fees, and confirmation status by transaction hash.

# Transaction Info



## OpenAPI

````yaml dogecoin/node-rpc-api/openapi.json get /transaction/{tx_hash}
openapi: 3.1.0
info:
  description: Node RPC API for Dogecoin.
  title: Dogecoin - Node RPC API
  version: '0.1'
servers:
  - description: Dogecoin Mainnet
    url: https://xdg-mainnet.gomaestro-api.org/v0/rpc
  - description: Dogecoin Testnet
    url: https://xdg-testnet.gomaestro-api.org/v0/rpc
security:
  - api-key: []
externalDocs:
  description: ''
  url: ''
paths:
  /transaction/{tx_hash}:
    get:
      tags:
        - Transactions
      summary: Transaction Info
      description: Transaction info by hash
      operationId: rpc_transaction_info
      parameters:
        - description: Transaction hash
          in: path
          name: tx_hash
          required: true
          schema:
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/api_dogecoin.DogecoinTransactionResponseBody
          description: OK
        '400':
          content:
            application/json:
              schema:
                oneOf:
                  - $ref: '#/components/schemas/api_dogecoin.NodeRPCError'
                  - $ref: '#/components/schemas/api_dogecoin.APIError'
          description: Invalid request.
        '500':
          content:
            application/json:
              schema:
                oneOf:
                  - $ref: '#/components/schemas/api_dogecoin.APIError'
                  - $ref: '#/components/schemas/api_dogecoin.APIError'
          description: Error processing transaction response.
components:
  schemas:
    api_dogecoin.DogecoinTransactionResponseBody:
      properties:
        data:
          $ref: '#/components/schemas/api_dogecoin.DogecoinTransaction'
        last_updated:
          $ref: '#/components/schemas/api_dogecoin.LastUpdatedBlock'
      type: object
    api_dogecoin.NodeRPCError:
      properties:
        code:
          description: Error code returned from the API request
          example: 0
          type: integer
        node rpc error:
          description: Error returned from the API request
          example: node rpc error
          type: string
      type: object
    api_dogecoin.APIError:
      properties:
        error:
          description: Error returned from the API request
          example: Bad Request
          type: string
      type: object
    api_dogecoin.DogecoinTransaction:
      properties:
        blockhash:
          type: string
        blocktime:
          type: integer
        confirmations:
          type: integer
        hash:
          type: string
        hex:
          type: string
        locktime:
          type: integer
        size:
          type: integer
        time:
          type: integer
        txid:
          type: string
        version:
          type: integer
        vin:
          items:
            properties:
              scriptSig:
                properties:
                  asm:
                    type: string
                  hex:
                    type: string
                type: object
              sequence:
                type: integer
              txid:
                type: string
              vout:
                type: integer
            type: object
          type: array
          uniqueItems: false
        vout:
          items:
            properties:
              'n':
                type: integer
              scriptPubKey:
                properties:
                  addresses:
                    items:
                      type: string
                    type: array
                    uniqueItems: false
                  asm:
                    type: string
                  hex:
                    type: string
                  reqSigs:
                    type: integer
                  type:
                    type: string
                type: object
              value:
                type: number
            type: object
          type: array
          uniqueItems: false
        vsize:
          type: integer
      type: object
    api_dogecoin.LastUpdatedBlock:
      properties:
        block_hash:
          type: string
        block_height:
          type: integer
      type: object
  securitySchemes:
    api-key:
      description: Project API Key
      in: header
      name: api-key
      type: apiKey

````