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

# Get a claim

> The claim's current status and, once decided, its verdict and receipt id.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/claims/{claim_id}
openapi: 3.1.0
info:
  description: 'The public HTTP API of QED Proof. Guides: https://docs.qedproof.site'
  title: QED Proof API
  version: 0.1.0
servers:
  - url: https://api.qedproof.site
security: []
paths:
  /v1/claims/{claim_id}:
    get:
      summary: Get a claim
      description: >-
        The claim's current status and, once decided, its verdict and receipt
        id.
      operationId: claim_status_v1_claims__claim_id__get
      parameters:
        - in: path
          name: claim_id
          required: true
          schema:
            title: Claim Id
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                additionalProperties: true
                title: Response Claim Status V1 Claims  Claim Id  Get
                type: object
          description: Successful Response
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
          description: Missing or invalid API key.
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
          description: No such claim in this workspace.
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Validation Error
        '429':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
          description: Rate limit exceeded.
      security:
        - apiKey: []
components:
  schemas:
    Error:
      properties:
        detail:
          description: What went wrong, in plain words.
          type: string
      required:
        - detail
      title: Error
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          title: Detail
          type: array
      title: HTTPValidationError
      type: object
    ValidationError:
      properties:
        ctx:
          title: Context
          type: object
        input:
          title: Input
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          title: Location
          type: array
        msg:
          title: Message
          type: string
        type:
          title: Error Type
          type: string
      required:
        - loc
        - msg
        - type
      title: ValidationError
      type: object
  securitySchemes:
    apiKey:
      description: A workspace API key, created on the Developers screen.
      scheme: bearer
      type: http

````