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

# Get Priority Fees

> API reference for GET /priority-fees

Returns the latest priority fee estimates for `medium`, `high`, and `very high`.

Response values are micro-lamports per compute unit.


## OpenAPI

````yaml GET /priority-fees
openapi: 3.1.0
info:
  title: DFlow Aggregator
  description: DFlow Aggregator API
  license:
    name: BUSL-1.1
  version: 0.1.0
servers:
  - url: https://quote-api.dflow.net
security:
  - api_key: []
tags:
  - name: order
    description: Order API endpoints
  - name: swap
    description: Swap API endpoints
  - name: intent
    description: Intent trading endpoints
  - name: prediction_market
    description: Prediction market endpoints
  - name: venues
    description: Venue endpoints
  - name: tokens
    description: Token endpoints
paths:
  /priority-fees:
    get:
      tags:
        - swap
      summary: Returns the latest global priority fee estimates for each priority level
      operationId: priority_fees_handler
      responses:
        '200':
          description: Priority fee estimates
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PriorityFeesResponse'
components:
  schemas:
    PriorityFeesResponse:
      type: object
      description: >-
        Global priority fee estimates (in micro-lamports per compute unit) for
        each priority level.
      required:
        - mediumMicroLamports
        - highMicroLamports
        - veryHighMicroLamports
      properties:
        highMicroLamports:
          type: integer
          format: int64
          description: >-
            Estimated micro-lamports per compute unit for the high priority
            level
          minimum: 0
        mediumMicroLamports:
          type: integer
          format: int64
          description: >-
            Estimated micro-lamports per compute unit for the medium priority
            level
          minimum: 0
        veryHighMicroLamports:
          type: integer
          format: int64
          description: >-
            Estimated micro-lamports per compute unit for the very high priority
            level
          minimum: 0
  securitySchemes:
    api_key:
      type: apiKey
      in: header
      name: x-api-key
      description: >-
        API key for authentication. Contact hello@dflow.net to obtain an API
        key.

````