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

# Listar recuperações de valores

> Retorna uma lista paginada de recuperações de valores pertencentes ao participante solicitante, por padrão das mais novas para as mais antigas. A listagem sempre tem o escopo limitado ao participante (ISPB) resolvido a partir do contexto autenticado do tenant; account_id é um filtro acessório opcional, não um limite de tenant. modified_after / modified_before são timestamps RFC3339 que filtram updatedAt de forma exclusiva; start_date / end_date são datas YYYY-MM-DD que filtram createdAt de forma inclusiva. status e sort_order não diferenciam maiúsculas de minúsculas. A resposta reproduz o total filtrado, page/limit aplicados e hasMore.



## OpenAPI

````yaml pt/openapi/v3-current/pix-lerian-dict.yaml GET /dict/funds-recoveries
openapi: 3.1.0
info:
  contact:
    name: Lerian Studio
    url: https://lerian.studio
  description: >-
    API pública para chaves Pix, reivindicações, marcadores de fraude, relatos
    de infração e recuperação de valores do MED.
  license:
    name: Elastic License 2.0
    url: https://www.elastic.co/licensing/elastic-license
  title: Pix Lerian — DICT
  version: release-candidate
servers:
  - url: https://api.example.com/dict-hub/v1
    description: Substitua o host de exemplo pela URL fornecida no onboarding do ambiente.
security:
  - BearerAuth: []
tags:
  - description: Registro, consulta, listagem, atualização e remoção de chaves Pix.
    name: Entries
  - description: Consulta de chaves Pix e verificação de existência no diretório DICT.
    name: Keys
  - description: Gestão de reivindicações de posse e portabilidade de chaves Pix.
    name: Claims
  - description: Gestão de recuperações de valores do MED 2.0 no escopo do participante.
    name: Funds Recoveries
  - description: Gestão de relatos de infração do MED 2.0 para a organização autenticada.
    name: Infraction Reports
  - description: Criação, consulta, cancelamento e liquidação de devoluções do MED 2.0.
    name: Refunds
  - description: >-
      Criação, consulta, listagem e cancelamento de marcadores de fraude do
      DICT.
    name: Fraud Markers
paths:
  /dict/funds-recoveries:
    get:
      tags:
        - Funds Recoveries
      summary: Listar recuperações de valores
      description: >-
        Retorna uma lista paginada de recuperações de valores pertencentes ao
        participante solicitante, por padrão das mais novas para as mais
        antigas. A listagem sempre tem o escopo limitado ao participante (ISPB)
        resolvido a partir do contexto autenticado do tenant; account_id é um
        filtro acessório opcional, não um limite de tenant. modified_after /
        modified_before são timestamps RFC3339 que filtram updatedAt de forma
        exclusiva; start_date / end_date são datas YYYY-MM-DD que filtram
        createdAt de forma inclusiva. status e sort_order não diferenciam
        maiúsculas de minúsculas. A resposta reproduz o total filtrado,
        page/limit aplicados e hasMore.
      operationId: listFundsRecoveries
      parameters:
        - description: >-
            Filter by lifecycle status (case-insensitive): CREATED, TRACKED,
            AWAITING_ANALYSIS, ANALYSED, REFUNDING, COMPLETED, CANCELLED
          explode: false
          in: query
          name: status
          schema:
            description: >-
              Filter by lifecycle status (case-insensitive): CREATED, TRACKED,
              AWAITING_ANALYSIS, ANALYSED, REFUNDING, COMPLETED, CANCELLED
            examples:
              - CREATED
            type: string
          example: CREATED
        - description: >-
            Filter by situation type: SCAM, ACCOUNT_TAKEOVER, COERCION,
            FRAUDULENT_ACCESS, OTHER, UNKNOWN
          explode: false
          in: query
          name: situation_type
          schema:
            description: >-
              Filter by situation type: SCAM, ACCOUNT_TAKEOVER, COERCION,
              FRAUDULENT_ACCESS, OTHER, UNKNOWN
            examples:
              - SCAM
            type: string
          example: SCAM
        - description: Filter by the root transaction id
          explode: false
          in: query
          name: root_transaction_id
          schema:
            description: Filter by the root transaction id
            examples:
              - E12345678202605171530aB3xK9mWq2z
            type: string
          example: E12345678202605171530aB3xK9mWq2z
        - description: Filter by client account UUID within the participant
          explode: false
          in: query
          name: account_id
          schema:
            description: Filter by client account UUID within the participant
            examples:
              - 550e8400-e29b-41d4-a716-446655440000
            type: string
          example: 550e8400-e29b-41d4-a716-446655440000
        - description: Return rows updated strictly after this RFC3339 timestamp
          explode: false
          in: query
          name: modified_after
          schema:
            description: Return rows updated strictly after this RFC3339 timestamp
            examples:
              - '2026-05-17T13:30:00Z'
            type: string
          example: '2026-05-17T13:30:00Z'
        - description: Return rows updated strictly before this RFC3339 timestamp
          explode: false
          in: query
          name: modified_before
          schema:
            description: Return rows updated strictly before this RFC3339 timestamp
            examples:
              - '2026-05-18T13:30:00Z'
            type: string
          example: '2026-05-18T13:30:00Z'
        - description: Return rows created on or after this date (YYYY-MM-DD)
          explode: false
          in: query
          name: start_date
          schema:
            description: Return rows created on or after this date (YYYY-MM-DD)
            examples:
              - '2026-05-01'
            type: string
          example: '2026-05-01'
        - description: >-
            Return rows created on or before this date (YYYY-MM-DD, inclusive of
            the whole day)
          explode: false
          in: query
          name: end_date
          schema:
            description: >-
              Return rows created on or before this date (YYYY-MM-DD, inclusive
              of the whole day)
            examples:
              - '2026-05-31'
            type: string
          example: '2026-05-31'
        - description: Return rows whose metadata contains this JSON object
          explode: false
          in: query
          name: metadata
          schema:
            description: Return rows whose metadata contains this JSON object
            examples:
              - '{"channel":"mobile"}'
            type: string
          example: '{"channel":"mobile"}'
        - description: Page number (1-based, default 1)
          explode: false
          in: query
          name: page
          schema:
            description: Page number (1-based, default 1)
            examples:
              - '1'
            type: string
          example: '1'
        - description: Maximum items per page (default 10, max 100)
          explode: false
          in: query
          name: limit
          schema:
            description: Maximum items per page (default 10, max 100)
            examples:
              - '10'
            type: string
          example: '10'
        - description: >-
            Sort direction by created_at (default desc, case-insensitive): asc
            or desc
          explode: false
          in: query
          name: sort_order
          schema:
            description: >-
              Sort direction by created_at (default desc, case-insensitive): asc
              or desc
            examples:
              - desc
            type: string
          example: desc
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListFundsRecoveriesOutput'
              examples:
                exemploFicticio:
                  summary: Exemplo fictício
                  value:
                    hasMore: false
                    items:
                      - accountId: 550e8400-e29b-41d4-a716-446655440000
                        bacenFundsRecoveryId: 9f3a8b7e-2c1d-4e5a-8b6f-1a2b3c4d5e6f
                        contactInformation:
                          email: user@example.com
                          phone: '+5511999999999'
                        correlationId: 7c9e6679742540de944be07fc1f90ae7
                        createdAt: '2026-05-17T13:30:00Z'
                        id: 018f8c1d-1234-7abc-9def-000000000001
                        metadata: metadata-example
                        participantId: '12345678'
                        reportDetails: Victim of a WhatsApp scam
                        reporterParticipant: '12345678'
                        rootTransactionId: E12345678202605171530aB3xK9mWq2z
                        situationType: SCAM
                        status: CREATED
                        trackingGraph: trackinggraph-example
                        trackingGraphParameters: trackinggraphparameters-example
                        updatedAt: '2026-05-17T13:30:00Z'
                    limit: 10
                    page: 1
                    total: 1
          description: OK
        default:
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Detail'
          description: Error
      x-codeSamples:
        - lang: bash
          label: cURL com dados fictícios
          source: |-
            curl --request GET \
              --url https://api.example.com/dict-hub/v1/dict/funds-recoveries \
              --header 'Authorization: Bearer demo-access-token'
components:
  schemas:
    ListFundsRecoveriesOutput:
      additionalProperties: false
      properties:
        hasMore:
          examples:
            - false
          type: boolean
        items:
          items:
            $ref: '#/components/schemas/FundsRecoveryOutput'
          type:
            - array
            - 'null'
        limit:
          examples:
            - 10
          format: int64
          type: integer
        page:
          examples:
            - 1
          format: int64
          type: integer
        total:
          examples:
            - 1
          format: int64
          type: integer
      required:
        - items
        - total
        - page
        - limit
        - hasMore
      type: object
    Detail:
      additionalProperties: false
      properties:
        code:
          description: >-
            Stable, machine-readable domain error code scoped to the emitting
            service (format: <SERVICE>-NNNN).
          examples:
            - ERR-0001
          type: string
        detail:
          description: >-
            A human-readable explanation specific to this occurrence of the
            problem.
          examples:
            - Property foo is required but is missing.
          type: string
        errors:
          description: Optional list of individual error details
          items:
            $ref: '#/components/schemas/ErrorDetail'
          type:
            - array
            - 'null'
        instance:
          description: >-
            A URI reference that identifies the specific occurrence of the
            problem.
          examples:
            - https://example.com/error-log/abc123
          format: uri
          type: string
        status:
          description: HTTP status code
          examples:
            - 400
          format: int64
          type: integer
        title:
          description: >-
            A short, human-readable summary of the problem type. This value
            should not change between occurrences of the error.
          examples:
            - Bad Request
          type: string
        type:
          default: about:blank
          description: A URI reference to human-readable documentation for the error.
          examples:
            - https://example.com/errors/example
          format: uri
          type: string
        upstream:
          $ref: '#/components/schemas/Upstream'
          description: >-
            RFC 9457 extension member: the error a proxied third-party provider
            reported. Absent unless the emitting service explicitly surfaced
            one.
      type: object
    FundsRecoveryOutput:
      additionalProperties: false
      properties:
        accountId:
          examples:
            - 550e8400-e29b-41d4-a716-446655440000
          type: string
        bacenFundsRecoveryId:
          examples:
            - 9f3a8b7e-2c1d-4e5a-8b6f-1a2b3c4d5e6f
          type: string
        contactInformation:
          $ref: '#/components/schemas/ContactInformationOutput'
        correlationId:
          examples:
            - 7c9e6679742540de944be07fc1f90ae7
          type: string
        createdAt:
          examples:
            - '2026-05-17T13:30:00Z'
          format: date-time
          type: string
        id:
          examples:
            - 018f8c1d-1234-7abc-9def-000000000001
          type: string
        metadata: {}
        participantId:
          examples:
            - '12345678'
          type: string
        reportDetails:
          examples:
            - Victim of a WhatsApp scam
          type: string
        reporterParticipant:
          examples:
            - '12345678'
          type: string
        rootTransactionId:
          examples:
            - E12345678202605171530aB3xK9mWq2z
          type: string
        situationType:
          enum:
            - SCAM
            - ACCOUNT_TAKEOVER
            - COERCION
            - FRAUDULENT_ACCESS
            - OTHER
            - UNKNOWN
          examples:
            - SCAM
          type: string
        status:
          enum:
            - CREATED
            - TRACKED
            - AWAITING_ANALYSIS
            - ANALYSED
            - REFUNDING
            - COMPLETED
            - CANCELLED
          examples:
            - CREATED
          type: string
        trackingGraph: {}
        trackingGraphParameters: {}
        updatedAt:
          examples:
            - '2026-05-17T13:30:00Z'
          format: date-time
          type: string
      required:
        - id
        - bacenFundsRecoveryId
        - participantId
        - accountId
        - rootTransactionId
        - situationType
        - status
        - reporterParticipant
        - contactInformation
        - createdAt
        - updatedAt
      type: object
    ErrorDetail:
      additionalProperties: false
      properties:
        location:
          description: >-
            Where the error occurred, e.g. 'body.items[3].tags' or
            'path.thing-id'
          type: string
        message:
          description: Error message text
          type: string
        value:
          description: The value at the given location
      type: object
    Upstream:
      additionalProperties: false
      properties:
        code:
          description: The upstream provider's own error code, verbatim.
          examples:
            - E4001
          type: string
        message:
          description: >-
            The upstream provider's own error message, verbatim (bounded, never
            its raw response body).
          examples:
            - account not found at provider
          type: string
      type: object
    ContactInformationOutput:
      additionalProperties: false
      properties:
        email:
          examples:
            - user@example.com
          type: string
        phone:
          examples:
            - '+5511999999999'
          type: string
      required:
        - email
        - phone
      type: object
  securitySchemes:
    BearerAuth:
      bearerFormat: JWT
      description: JWT bearer token issued by the identity provider.
      scheme: bearer
      type: http

````