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

# Get bulk order fills

> Retrieve fills for bulk orders with optional filtering by market, sequence number, or range.
Shows execution details including price, size, and timestamp for each fill.



## OpenAPI

````yaml /api-reference/openapi.json get /api/v1/bulk_order_fills
openapi: 3.1.0
info:
  title: Decibel Trading API
  description: >-
    RESTful API for Decibel. Provides read-only endpoints for market data,
    trading operations, positions, and analytics.
  contact:
    name: Decibel Team
    url: https://decibel.trade/
  license:
    name: ''
  version: 1.0.0
servers:
  - url: https://api.mainnet.aptoslabs.com/decibel
    description: Mainnet
  - url: https://api.testnet.aptoslabs.com/decibel
    description: Testnet
security:
  - bearerAuth: []
tags:
  - name: Market Data
    description: Market information and real-time data endpoints
  - name: User
    description: User information and account management
  - name: Trades
    description: Trading operations and history
  - name: Positions
    description: User position management
  - name: Orders
    description: Order management and history
  - name: TWAP
    description: Time-weighted average price orders
  - name: Bulk Orders
    description: Bulk order management
  - name: Vaults
    description: Vault operations and management
  - name: Analytics
    description: Analytics and performance metrics
  - name: Predeposit Rewards
    description: Season 0 predeposit USDC rewards
  - name: Referrals
    description: Referral code management and tracking
paths:
  /api/v1/bulk_order_fills:
    get:
      tags:
        - Bulk Orders
      summary: Get bulk order fills
      description: >-
        Retrieve fills for bulk orders with optional filtering by market,
        sequence number, or range.

        Shows execution details including price, size, and timestamp for each
        fill.
      operationId: handle_bulk_order_fills
      parameters:
        - name: account
          in: query
          description: User account address
          required: true
          schema:
            type: string
          example: 0x123...
        - name: market
          in: query
          description: Filter by specific market address
          required: false
          schema:
            type: string
          example: 0xmarket123...
        - name: sequence_number
          in: query
          description: Single sequence number to query
          required: false
          schema:
            type: integer
            format: int64
            minimum: 0
          example: 12345
        - name: start_sequence_number
          in: query
          description: Start of sequence number range
          required: false
          schema:
            type: integer
            format: int64
            minimum: 0
          example: 10000
        - name: end_sequence_number
          in: query
          description: >-
            End of sequence number range. `start_sequence_number` is required if
            this is provided.
          required: false
          schema:
            type: integer
            format: int64
            minimum: 0
          example: 20000
        - name: pagination
          in: query
          description: Pagination parameters
          required: false
          schema:
            type: object
            properties:
              limit:
                type: integer
                format: int32
                maximum: 1000
                minimum: 0
              offset:
                type: integer
                format: int32
                maximum: 10000
                minimum: 0
      responses:
        '200':
          description: Bulk order fills retrieved successfully
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BulkOrderFillDto'
        '500':
          description: Database error
components:
  schemas:
    BulkOrderFillDto:
      type: object
      required:
        - market
        - sequence_number
        - user
        - filled_size
        - price
        - is_bid
        - trade_id
        - transaction_unix_ms
        - transaction_version
        - event_uid
      properties:
        event_uid:
          $ref: '#/components/schemas/u128'
        filled_size:
          type: number
          format: double
        is_bid:
          type: boolean
        market:
          type: string
          example: 0xmarket123...
        price:
          type: number
          format: double
        sequence_number:
          type: integer
          format: int64
          example: 12345
          minimum: 0
        trade_id:
          type: string
          example: '3647276'
        transaction_unix_ms:
          type: integer
          format: int64
          example: 1730841600000
        transaction_version:
          type: integer
          format: int64
          example: 12345
          minimum: 0
        user:
          type: string
          example: 0x123...
    u128:
      type: integer
      minimum: 0
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        Bearer token from Geomi. See
        [Authentication](/api-reference/rest/authentication) for setup
        instructions.

````