> ## 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 paginated list of transactions in a Bitcoin block starting from a specific index position.

# Get block transactions



## OpenAPI

````yaml bitcoin/esplora-api/openapi.json get /block/{hash}/txs/{start_index}
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:
  /block/{hash}/txs/{start_index}:
    get:
      tags:
        - Blocks
      summary: Get block transactions
      description: >-
        Returns a list of transactions in the block (up to 25 transactions
        beginning at start_index). Transactions returned here do not have the
        status field, since all the transactions share the same block and
        confirmation status.
      parameters:
        - name: hash
          in: path
          required: true
          description: The block hash.
          schema:
            type: string
            example: 00000000000000000001b9dca5d168a8e959df258814beec486572e843fddee5
        - name: start_index
          in: query
          required: false
          description: Index to start fetching transactions from (pagination).
          schema:
            type: integer
            minimum: 0
      responses:
        '200':
          description: A list of transactions in the block.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Transaction'
        '404':
          description: Block not found
components:
  schemas:
    Transaction:
      type: object
      properties:
        txid:
          type: string
        version:
          type: integer
        locktime:
          type: integer
        size:
          type: integer
        weight:
          type: integer
        fee:
          type: integer
        vin:
          type: array
          items:
            type: object
            properties:
              txid:
                type: string
              vout:
                type: integer
              is_coinbase:
                type: boolean
              scriptsig:
                type: string
              scriptsig_asm:
                type: string
              sequence:
                type: integer
              witness:
                type: array
                items:
                  type: string
              prevout:
                type: object
                properties:
                  scriptpubkey:
                    type: string
                  scriptpubkey_asm:
                    type: string
                  scriptpubkey_type:
                    type: string
                  scriptpubkey_address:
                    type: string
                  value:
                    type: integer
        vout:
          type: array
          items:
            type: object
            properties:
              scriptpubkey:
                type: string
              scriptpubkey_asm:
                type: string
              scriptpubkey_type:
                type: string
              scriptpubkey_address:
                type: string
              value:
                type: integer
        status:
          type: object
          properties:
            confirmed:
              type: boolean
            block_height:
              type: integer
            block_hash:
              type: string
            block_time:
              type: integer
      required:
        - txid
        - vin
        - vout
        - status
  securitySchemes:
    api-key:
      type: apiKey
      in: header
      name: api-key
      description: Project API Key

````