> ## 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 information about a specific Dogecoin transaction in the mempool including fees and dependencies.

# Mempool Transaction Info



## OpenAPI

````yaml dogecoin/node-rpc-api/openapi.json get /mempool/transactions/{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:
  /mempool/transactions/{tx_hash}:
    get:
      tags:
        - Mempool
      summary: Mempool Transaction Info
      description: Mempool transaction info by hash
      operationId: rpc_mempool_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.MempoolTxDetailsResponseBody'
          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:
                $ref: '#/components/schemas/api_dogecoin.APIError'
          description: Error getting mempool transaction info.
components:
  schemas:
    api_dogecoin.MempoolTxDetailsResponseBody:
      properties:
        data:
          $ref: '#/components/schemas/api_dogecoin.MempoolTxDetailsResult'
        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.MempoolTxDetailsResult:
      properties:
        ancestorcount:
          type: integer
        ancestorsize:
          type: integer
        bip125-replaceable:
          type: boolean
        depends:
          items:
            type: string
          type: array
          uniqueItems: false
        descendantcount:
          type: integer
        descendantsize:
          type: integer
        fees:
          $ref: '#/components/schemas/api_dogecoin.TxFees'
        height:
          type: integer
        spentby:
          items:
            type: string
          type: array
          uniqueItems: false
        time:
          type: integer
        unbroadcast:
          type: boolean
        vsize:
          type: integer
        weight:
          type: integer
        wtxid:
          type: string
      type: object
    api_dogecoin.LastUpdatedBlock:
      properties:
        block_hash:
          type: string
        block_height:
          type: integer
      type: object
    api_dogecoin.TxFees:
      properties:
        ancestor:
          type: number
        base:
          type: number
        descendant:
          type: number
        modified:
          type: number
      type: object
  securitySchemes:
    api-key:
      description: Project API Key
      in: header
      name: api-key
      type: apiKey

````