> ## 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: Account
    description: Account-specific endpoints and data
  - 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: Points
    description: Points-related account metrics
  - name: Trading Points
    description: Trading points endpoints
  - name: Trading Hz
    description: Trading Hz endpoints
  - name: Tier
    description: Tier information endpoints
  - name: Streaks
    description: User streak tracking endpoints
  - name: Predeposit Rewards
    description: Season 0 predeposit USDC rewards
  - name: Referrals
    description: Referral code management and tracking
  - name: Affiliates
    description: Affiliate code and earnings endpoints
  - name: Campaigns
    description: On-chain reward campaign endpoints
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 (`user` query alias is also accepted)
          required: true
          schema:
            type: string
        - name: market
          in: query
          description: >-
            Filter by specific market address. Use `all` to disable market
            filtering.
          required: false
          schema:
            type: string
        - name: sequence_number
          in: query
          description: >-
            Single sequence number to query. Mutually exclusive with
            `start_sequence_number`/`end_sequence_number`.
          required: false
          schema:
            type: integer
            format: int64
            minimum: 0
        - name: start_sequence_number
          in: query
          description: >-
            Start of sequence number range. Mutually exclusive with
            `sequence_number`.
          required: false
          schema:
            type: integer
            format: int64
            minimum: 0
        - name: end_sequence_number
          in: query
          description: >-
            End of sequence number range. Requires `start_sequence_number` when
            provided.
          required: false
          schema:
            type: integer
            format: int64
            minimum: 0
        - name: limit
          in: query
          description: Effective page size (clamped to 1..=1000 at runtime)
          required: false
          schema:
            type: integer
            format: int32
            default: 10
            maximum: 1000
            minimum: 1
          example: 100
        - name: offset
          in: query
          description: Page offset
          required: false
          schema:
            type: integer
            format: int32
            default: 0
            maximum: 10000
            minimum: 0
          example: 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.

````