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

# Get dashboard overview (stats, credits, agent count)



## OpenAPI

````yaml GET /api/v1/operator/dashboard
openapi: 3.0.0
info:
  title: AgentChain & PRIOR API
  description: The centralized gateway for the decentralized compute network.
  version: '1.0'
  contact: {}
servers:
  - url: https://api.agentchain.xyz
    description: Production
security: []
tags: []
paths:
  /api/v1/operator/dashboard:
    get:
      tags:
        - operator
      summary: Get dashboard overview (stats, credits, agent count)
      operationId: OperatorController_getDashboard
      parameters: []
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DashboardStatsDto'
      security:
        - bearer: []
components:
  schemas:
    DashboardStatsDto:
      type: object
      properties:
        creditsRemaining:
          type: number
        creditsTotal:
          type: number
        creditsResetDays:
          type: number
        tasksThisMonth:
          type: number
        tasksTrend:
          type: number
        verificationRate:
          type: number
        verificationTrend:
          type: number
        avgLatencyMs:
          type: number
        latencyTrend:
          type: number
        agentCount:
          type: number
      required:
        - creditsRemaining
        - creditsTotal
        - creditsResetDays
        - tasksThisMonth
        - tasksTrend
        - verificationRate
        - verificationTrend
        - avgLatencyMs
        - latencyTrend
        - agentCount
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````