> ## 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 list of recently submitted Bitcoin transactions in the mempool ordered by arrival time.

# Mempool Recent



## OpenAPI

````yaml bitcoin/esplora-api/openapi.json get /mempool/recent
openapi: 3.0.3
info:
  title: Bitcoin - Esplora API
  version: 1.0.0
  description: >
    OpenAPI spec for core Esplora endpoints: blocks, transactions, addresses,
    mempool, fees, UTXO data and more.
servers:
  - url: https://xbt-mainnet.gomaestro-api.org/v0/esplora
  - url: https://xbt-testnet.gomaestro-api.org/v0/esplora
security:
  - api-key: []
paths:
  /mempool/recent:
    get:
      tags:
        - Mempool
      summary: Mempool Recent
      description: >-
        Get a list of the last 10 transactions to enter the mempool. Each
        transaction object contains simplified overview data, with the following
        fields: txid, fee, vsize, and value.
      responses:
        '200':
          description: A list of recent mempool transactions.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/MempoolRecentTx'
              examples:
                example:
                  value:
                    - txid: f3c21f...
                      fee: 426
                      vsize: 141
                      value: 12500
components:
  schemas:
    MempoolRecentTx:
      type: object
      properties:
        txid:
          type: string
          description: Transaction ID
        fee:
          type: integer
          description: Total fee paid in satoshis
        vsize:
          type: integer
          description: Virtual size of the transaction in vbytes
        value:
          type: integer
          description: Total value transferred in satoshis
      required:
        - txid
        - fee
        - vsize
        - value
  securitySchemes:
    api-key:
      type: apiKey
      in: header
      name: api-key
      description: Project API Key

````