> ## 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.

# Settlement Stats

> Returns 30-day totals: released, held, disputed, avg settlement time, verification rate.



## OpenAPI

````yaml GET /api/v1/settlement/stats
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/settlement/stats:
    get:
      tags:
        - settlement
      summary: Settlement aggregate stats
      description: >-
        Returns 30-day totals: released, held, disputed, avg settlement time,
        verification rate.
      operationId: SettlementController_getStats
      parameters: []
      responses:
        '200':
          description: Settlement stats object

````