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

# List all claims

> Returns a simplified list of all claims. Use the retrieve endpoint to get full claim details with cases.



## OpenAPI

````yaml /api-reference/v2/openapi.yaml get /v2/issuer/claims
openapi: 3.0.0
info:
  title: Decisionly API v2
  description: Claims-based API for submission and handling of chargebacks by issuers.
  version: 2.0.0
servers:
  - url: https://api.decisionly.com
    description: Production server. Use your test key for the sandbox environment.
security:
  - basicAuth: []
tags:
  - name: v2 Cases
    description: Case management endpoints
  - name: v2 Claims
    description: Claim management endpoints
  - name: v2 Events
    description: Event endpoints
  - name: v2 Files
    description: File upload endpoints
  - name: v2 Beta
    description: Beta features - These endpoints are experimental and subject to change
paths:
  /v2/issuer/claims:
    get:
      tags:
        - v2 Claims
      summary: List all claims
      description: >-
        Returns a simplified list of all claims. Use the retrieve endpoint to
        get full claim details with cases.
      parameters:
        - in: query
          name: limit
          description: Number of claims to return (1-100). Defaults to 10.
          schema:
            type: integer
            minimum: 1
            maximum: 100
            default: 10
      responses:
        '200':
          description: A JSON array of claims with basic information.
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/ClaimListItem'
                  has_more:
                    type: boolean
                    description: Whether there are more claims available.
              example:
                data:
                  - claim_id: claim_abc123
                    created: '2026-04-01T00:00:00.000Z'
                    status: open
                  - claim_id: claim_def456
                    created: '2026-03-15T00:00:00.000Z'
                    status: filed
                has_more: false
        '400':
          description: Bad request - invalid parameters.
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
              examples:
                invalid_limit:
                  summary: Invalid limit parameter
                  value:
                    message: Limit must be an integer.
                limit_too_small:
                  summary: Limit too small
                  value:
                    message: Limit must be greater than 0.
                limit_too_large:
                  summary: Limit exceeds maximum
                  value:
                    message: Limit cannot be greater than 100.
components:
  schemas:
    ClaimListItem:
      type: object
      description: Simplified claim object returned in list responses.
      properties:
        claim_id:
          description: Unique identifier for the claim.
          type: string
          example: claim_abc123
        created:
          description: When the claim was created. ISO 8601 format.
          type: string
          format: date-time
          example: '2026-04-01T00:00:00.000Z'
        status:
          description: The status of the claim.
          type: string
          enum:
            - open
            - filed
            - closed
          example: open
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic
      description: Use your API key as the username. No password is required.

````