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

# Listar transações de crédito

> Lista transações de crédito com filtros e paginação



## OpenAPI

````yaml https://api.juridiq.com.br/openapi.json get /credits/transactions
openapi: 3.1.0
info:
  title: Juridiq Server API (interno)
  description: Documentação técnica **interna** da API Juridiq Server
  version: 1.0.0
servers:
  - url: http://localhost:3001
    description: Development server
  - url: https://api.juridiq.com.br
    description: Production server
security:
  - bearerAuth: []
paths:
  /credits/transactions:
    get:
      tags:
        - Transactions
      summary: Listar transações de crédito
      description: Lista transações de crédito com filtros e paginação
      parameters:
        - schema:
            anyOf:
              - type: string
              - type: number
          in: query
          name: page
          required: false
        - schema:
            anyOf:
              - type: string
              - type: number
          in: query
          name: limit
          required: false
        - schema:
            type: string
            format: uuid
          in: query
          name: creditModuleId
          required: false
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          format: uuid
                        amount:
                          type: number
                        totalValue:
                          type: number
                        asaasPaymentId:
                          type: string
                          nullable: true
                        officeId:
                          type: string
                        creditModuleId:
                          type: string
                          nullable: true
                        createdAt:
                          type: string
                          format: date-time
                        updatedAt:
                          type: string
                          format: date-time
                        creditModule:
                          type: object
                          properties:
                            id:
                              type: string
                            name:
                              type: string
                            description:
                              type: string
                              nullable: true
                          required:
                            - id
                            - name
                            - description
                          additionalProperties: false
                      required:
                        - id
                        - amount
                        - totalValue
                        - asaasPaymentId
                        - officeId
                        - creditModuleId
                        - createdAt
                        - updatedAt
                      additionalProperties: false
                  totalResults:
                    type: number
                  totalPages:
                    type: number
                required:
                  - data
                  - totalResults
                  - totalPages
                additionalProperties: false
      security:
        - apiKeyAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: 'Insira o token JWT no formato: Bearer {token}'
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-juridiq-api-key
      description: >-
        Chave de API do escritório (criada no painel). Envie o valor no header
        x-juridiq-api-key. A API aberta aplica rate limit por chave (veja a
        documentação de integradores).

````