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

# Get funding overview

> Handles `GET /v1/funding/overview` via `get.v1.funding.overview`.



## OpenAPI

````yaml /openapi/phoenix-public-api.json get /v1/funding/overview
openapi: 3.1.0
info:
  title: Phoenix Eternal API
  description: >-
    RESTful API for accessing Phoenix Eternal perpetual trading data. Provides
    real-time orderbook levels, asset information, and market metadata.
  termsOfService: https://www.phoenix.trade/terms-of-service
  contact:
    name: Phoenix Development Team
    url: https://github.com/Ellipsis-Labs/phoenix
  license:
    name: Proprietary
  version: 1.0.0
servers:
  - url: https://perp-api.phoenix.trade
    description: Phoenix Eternal Perp API
security: []
tags:
  - name: Auth
    description: Wallet and session authentication.
  - name: Exchange
    description: Exchange, market, candle, and no-referral register-instruction workflows.
  - name: Invite
    description: Invite validation, referral activation, and wallet allowlist checks.
  - name: Notifications
    description: Trader notification reads and acknowledgement helpers.
  - name: Trader
    description: Trader state, account history, and transaction builders.
externalDocs:
  url: https://docs.phoenix.trade
  description: Phoenix developer documentation
paths:
  /v1/funding/overview:
    get:
      tags:
        - Exchange
      summary: Get funding overview
      description: Handles `GET /v1/funding/overview` via `get.v1.funding.overview`.
      operationId: get.v1.funding.overview
      parameters:
        - name: startTime
          in: query
          description: >-
            Start time in milliseconds since Unix epoch (default: now - 7 days,
            max range: 1 year)
          required: false
          schema:
            type: integer
            format: int64
        - name: endTime
          in: query
          description: 'End time in milliseconds since Unix epoch (default: now)'
          required: false
          schema:
            type: integer
            format: int64
        - name: perMarketLimit
          in: query
          description: 'Max number of points to return per market (default: 500, max: 5000)'
          required: false
          schema:
            type: integer
            format: int64
      responses:
        '200':
          description: Funding overview history grouped by market
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FundingOverviewResponse'
        '400':
          $ref: '#/components/responses/ErrorResponse'
        '500':
          $ref: '#/components/responses/ErrorResponse'
      security:
        - PhoenixBearerAuth: []
components:
  schemas:
    FundingOverviewResponse:
      type: object
      description: Response containing funding overview series for multiple markets
      required:
        - series
      properties:
        series:
          type: array
          items:
            $ref: '#/components/schemas/FundingOverviewSeries'
    FundingOverviewSeries:
      type: object
      description: Funding overview series for a single market
      required:
        - marketId
        - symbol
        - points
      properties:
        marketId:
          type: integer
          format: int64
        points:
          type: array
          items:
            $ref: '#/components/schemas/FundingOverviewPoint'
        symbol:
          type: string
    ErrorResponse:
      type: object
      required:
        - error
      properties:
        error:
          type: string
    FundingOverviewPoint:
      type: object
      description: Individual funding overview data point for a market
      required:
        - timestamp
        - fundingAmountPerUnit
        - markPrice
        - fundingRate
      properties:
        fundingAmountPerUnit:
          type: string
          description: Funding amount per base unit in quote units.
        fundingRate:
          type: string
          description: Funding rate for the interval as a decimal.
        markPrice:
          type: string
          description: Mark price in quote units per base unit.
        timestamp:
          type: string
          format: date-time
          description: Formatted datetime string (ISO 8601).
  responses:
    ErrorResponse:
      description: Standard JSON error payload.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
  securitySchemes:
    PhoenixBearerAuth:
      type: http
      scheme: bearer
      description: Bearer access token issued by `/v1/auth/*` login endpoints.

````