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

# Get the account's per-customer fairness configuration

> Admin only. Returns whether fairness/overage are enabled, the default per-key weight, and the shared-burst percentage for the account's active plan.



## OpenAPI

````yaml /openapi.json get /admin/fairness/config
openapi: 3.0.0
info:
  title: NestAPI
  version: '1.0'
servers:
  - description: Staging
    url: https://dev.api.nestapi.com
security: []
tags:
  - name: account
    description: API key and account management
  - name: ApiAdmin
  - name: auth
  - name: fairness
    description: >-
      Per-customer nesting-minutes fairness config, weights and usage (requires
      an Admin API key)
  - name: importer
  - name: nesting
    description: Submit nesting jobs, retrieve results and exports
  - name: public
    description: Health check and public utility endpoints
paths:
  /admin/fairness/config:
    parameters:
      - $ref: '#/components/parameters/Accept'
    get:
      tags:
        - fairness
      summary: Get the account's per-customer fairness configuration
      description: >-
        Admin only. Returns whether fairness/overage are enabled, the default
        per-key weight, and the shared-burst percentage for the account's active
        plan.
      operationId: GetFairnessConfig
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FairnessConfigResponse'
      deprecated: false
      security:
        - Bearer: []
components:
  parameters:
    Accept:
      name: Accept
      in: header
      description: Accept Header
      required: true
      schema:
        type: string
        enum:
          - application/json
  schemas:
    FairnessConfigResponse:
      title: FairnessConfigResponse
      properties:
        FairnessEnabled:
          type: boolean
          nullable: false
        OverageEnabled:
          type: boolean
          nullable: false
        DefaultLineageWeight:
          type: integer
          format: int32
          nullable: false
        BurstPercent:
          type: integer
          format: int32
          nullable: false
      description: FairnessConfigResponse
      type: object
  securitySchemes:
    Bearer:
      type: apiKey
      name: Authorization
      in: header

````