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

# Get all transactions by network

> Returns a list of transactions for the specified network. Supports both traditional pagination and scroll API for large datasets.



## OpenAPI

````yaml /api-reference/data-api.json post /v1/network/{network}/transactions
openapi: 3.0.0
info:
  title: Range Data API
  description: >-
    The Range Data API for crypto addresses, networks, transactions, and
    entities.
  version: 1.7.8
  contact: {}
servers:
  - url: https://api.range.org
    description: Range API Server
security:
  - Authorization: []
tags:
  - name: Address Information
    description: Get information about a crypto address.
  - name: Entity Information
    description: Get information about entities.
  - name: Network Information
    description: Get information about networks.
  - name: Protocols
    description: Get information about cross-chain protocols.
  - name: Token transfers
    description: Get information about token transfers.
paths:
  /v1/network/{network}/transactions:
    post:
      tags:
        - Network Information
      summary: Get all transactions by network
      description: >-
        Returns a list of transactions for the specified network. Supports both
        traditional pagination and scroll API for large datasets.
      operationId: getTransactionsByNetwork
      parameters:
        - name: network
          required: true
          in: path
          schema:
            type: string
        - name: page
          required: false
          in: query
          description: Page number "offset"
          schema:
            example: '0'
            type: string
        - name: pageSize
          required: false
          in: query
          description: Page size
          schema:
            type: string
        - name: useScroll
          required: false
          in: query
          description: Whether to use scroll API for pagination
          schema:
            default: false
            type: boolean
        - name: scrollBatchSize
          required: false
          in: query
          description: Batch size for scroll requests
          schema:
            default: 100
            type: number
        - name: hasMore
          required: false
          in: query
          description: Whether there are more results available (only when useScroll=true)
          schema:
            type: boolean
        - name: network
          required: false
          in: query
          description: Network identifier
          schema:
            type: string
        - name: address
          required: false
          in: query
          description: Address to filter transactions
          schema:
            type: string
        - name: startTime
          required: false
          in: query
          description: Start time filter (ISO format)
          schema:
            type: string
        - name: endTime
          required: false
          in: query
          description: End time filter (ISO format)
          schema:
            type: string
        - name: msgTypes
          required: false
          in: query
          description: Comma-separated message types to filter
          schema:
            type: string
        - name: status
          required: false
          in: query
          description: Transaction status (e.g., "success", "failed")
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ScrollIdDTO'
      responses:
        '200':
          description: List of transactions for the specified network.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TransactionsResponseDTO'
components:
  schemas:
    ScrollIdDTO:
      type: object
      properties:
        scrollId:
          type: string
          description: Scroll ID for pagination (only when useScroll=true)
    TransactionsResponseDTO:
      type: object
      properties:
        scrollId:
          type: string
          description: Scroll ID for pagination (only when useScroll=true)
        hasMore:
          type: boolean
          description: Whether there are more results available (only when useScroll=true)
        transactions:
          type: array
          description: Array of transactions
          items:
            type: object
        count:
          type: number
          description: Total count of transactions
      required:
        - transactions
  securitySchemes:
    Authorization:
      scheme: bearer
      bearerFormat: API Key
      description: 'Use Authorization: Bearer <api-key>'
      type: http

````