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

# List PIX Transactions

> List PIX transactions for a legacy v1 integration.



## OpenAPI

````yaml api-reference/openapi-v1.json GET /pix/v1/transactions
openapi: 3.1.0
info:
  title: API PIX - v1
  description: >-
    API for Pagou.ai Gateway


    Warning: API v1 is legacy and not recommended for new integrations. It
    receives security updates only.
  version: 2.0.0
  contact:
    name: Support
    url: https://pagou.ai
    email: support@pagou.ai
servers:
  - url: https://api.pagou.ai
    description: Production server
  - url: https://api.sandbox.pagou.ai
    description: Sandbox server for testing
security:
  - ApiKeyAuth: []
paths:
  /pix/v1/transactions:
    get:
      tags:
        - transactions
      summary: List PIX Transactions
      description: Get transactions
      operationId: getPixTransactions
      parameters:
        - schema:
            type: number
            minimum: 1
            maximum: 90
          in: query
          name: period
          required: true
        - schema:
            default: 1
            type: number
            minimum: 1
          in: query
          name: page
          required: false
        - schema:
            default: 10
            type: number
            minimum: 1
            maximum: 50
          in: query
          name: limit
          required: false
        - schema:
            default: DESC
            type: string
            enum:
              - ASC
              - DESC
          in: query
          name: order
          required: false
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  page:
                    type: integer
                  limit:
                    type: integer
                  total:
                    type: integer
                  items:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                        status:
                          type: string
                        value:
                          type: integer
                        type:
                          type: string
                        createdAt:
                          type: string
                      required:
                        - id
                        - status
                        - value
                        - type
                        - createdAt
                      additionalProperties: false
                required:
                  - page
                  - limit
                  - total
                  - items
                additionalProperties: false
              example:
                page: 1
                limit: 10
                total: 2
                items:
                  - id: trn_1f3f2d2299d74944a6a028f278f2f0e7
                    status: PAID
                    value: 9417
                    type: PIX
                    createdAt: '2026-02-06T19:50:49.926Z'
                  - id: trn_7e4b62f078d64ad9a35fef3ea5e1704b
                    status: WAITING_PAYMENT
                    value: 4310
                    type: PIX
                    createdAt: '2026-02-06T19:52:13.295Z'
        '422':
          description: Validation error (RFC 7807)
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ValidationProblemDetails'
              example:
                type: https://api.pagou.ai/problems/validation-error
                title: Validation Error
                status: 422
                detail: The request contains invalid data.
                instance: /pix/v1/transactions
                errors:
                  - field: transaction.value
                    message: Must be greater than zero.
                    code: invalid_type
        default:
          description: RFC 7807 Problem Details error response
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
              example:
                type: https://api.pagou.ai/problems/unauthorized
                title: Unauthorized
                status: 401
                detail: Authentication failed for GET /pix/v1/transactions.
                instance: /pix/v1/transactions
      security:
        - ApiKeyAuth: []
components:
  schemas:
    ValidationProblemDetails:
      allOf:
        - $ref: '#/components/schemas/ProblemDetails'
        - type: object
          properties:
            errors:
              type: array
              items:
                type: object
                properties:
                  field:
                    type: string
                  message:
                    type: string
                  code:
                    type: string
                additionalProperties: true
          additionalProperties: true
    ProblemDetails:
      type: object
      description: RFC 7807 Problem Details object.
      properties:
        type:
          type: string
          format: uri-reference
        title:
          type: string
        status:
          type: number
        detail:
          type: string
        instance:
          type: string
          format: uri-reference
      required:
        - type
        - title
        - status
        - detail
      additionalProperties: true
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: apiKey

````