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

# List Disputes

> Retrieve a list of all disputes associated with a store's connected Blink account, verified via `x-store-id`. Supports limiting the number of disputes returned. Returns dispute data, including status and amounts involved.



## OpenAPI

````yaml /api-reference/blink-api.json get /v1/disputes
openapi: 3.0.0
info:
  title: Blink API
  description: Comprehensive API documentation for Blink.
  version: 1.0.0
servers:
  - url: https://api.blink.store/v1
security:
  - storeIdHeader: []
tags:
  - name: Invoices
    description: Unified merchant of record invoices for products and subscriptions.
  - name: Geo Pricing
    description: Resolve Purchasing Power Parity (PPP) localized pricing.
paths:
  /v1/disputes:
    get:
      tags:
        - Disputes
      summary: List Disputes
      description: >-
        Retrieve a list of all disputes associated with a store's connected
        Blink account, verified via `x-store-id`. Supports limiting the number
        of disputes returned. Returns dispute data, including status and amounts
        involved.
      parameters:
        - name: limit
          in: query
          description: Number of disputes to retrieve.
          schema:
            type: integer
      responses:
        '200':
          description: Disputes retrieved successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DisputesListResponse'
      security:
        - storeIdHeader: []
components:
  schemas:
    DisputesListResponse:
      type: object
      properties:
        meta:
          type: object
          properties:
            has_more:
              type: boolean
        data:
          type: array
          items:
            type: object
            properties:
              id:
                type: string
              amount:
                type: integer
              currency:
                type: string
              status:
                type: string
              reason:
                type: string
              created:
                type: string
                format: date-time
  securitySchemes:
    storeIdHeader:
      type: apiKey
      in: header
      name: x-store-id

````