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

# Get the leaderboard

> Org members ranked by all-time approved points.



## OpenAPI

````yaml /openapi.json get /leaderboard
openapi: 3.1.0
info:
  title: Market or Die API
  version: 1.0.0
  description: >-
    Compose, schedule, and ship posts to every connected channel —
    programmatically.
servers:
  - url: https://api.marketordie.io/v1
    description: Production
security:
  - bearerAuth: []
tags:
  - name: Account
    description: Who the API key acts as.
  - name: Channels
    description: Connected accounts you can post to.
  - name: Media
    description: Upload images to attach to posts.
  - name: Posts
    description: Create, schedule, list, and delete posts.
  - name: Leaderboard
    description: Team standings by points.
paths:
  /leaderboard:
    get:
      tags:
        - Leaderboard
      summary: Get the leaderboard
      description: Org members ranked by all-time approved points.
      operationId: getLeaderboard
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/LeaderboardEntry'
        '401':
          $ref: '#/components/responses/Unauthorized'
components:
  schemas:
    LeaderboardEntry:
      type: object
      properties:
        membership_id:
          type: string
        name:
          type: string
          nullable: true
        level:
          type: integer
        points:
          type: integer
    Error:
      type: object
      properties:
        error:
          type: object
          properties:
            code:
              type: string
            message:
              type: string
  responses:
    Unauthorized:
      description: Missing or invalid API key.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            error:
              code: unauthorized
              message: Invalid or revoked API key.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        Your API key as a bearer token: `Authorization: Bearer mod_live_…`. (You
        can also send it as `x-api-key`.)

````