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

# List project transactions



## OpenAPI

````yaml /OPENAPI.yaml get /api/transactions
openapi: 3.0.3
info:
  title: Redf Backend API
  version: 1.0.0
  description: >
    OpenAPI specification for the current HTTP backend exposed by the Phoenix
    router. The spec reflects the routes and controller behaviour currently
    implemented in `blockchain_app/lib/blockchain_app_web/router.ex`.
servers:
  - url: http://localhost:4000
    description: Local development
security: []
tags:
  - name: Health
  - name: Networks
  - name: Projects
  - name: Transactions
  - name: Widgets
paths:
  /api/transactions:
    get:
      tags:
        - Transactions
      summary: List project transactions
      operationId: listTransactionsGet
      parameters:
        - in: query
          name: project_uid
          required: true
          schema:
            type: string
          description: Project UUID
        - in: query
          name: limit
          schema:
            type: integer
            minimum: 1
            maximum: 100
            default: 100
        - in: query
          name: offset
          schema:
            type: integer
            minimum: 0
            default: 0
      responses:
        '200':
          description: Project transactions
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TransactionsListResponse'
        '400':
          description: Invalid request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Project not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    TransactionsListResponse:
      type: object
      required:
        - status
        - transactions
        - meta
      properties:
        status:
          type: string
          enum:
            - ok
        transactions:
          type: array
          items:
            $ref: '#/components/schemas/TransactionWithNetwork'
        meta:
          $ref: '#/components/schemas/PaginationMeta'
    ErrorResponse:
      type: object
      description: >
        Generic error payload used by the API. Some handlers return `error`,
        while validation and internal checker failures may return only `errors`
        or `reason`.
      required:
        - status
      properties:
        status:
          type: string
          enum:
            - error
        error:
          type: string
          example: invalid_request
        reason:
          type: string
          nullable: true
        detail:
          type: string
          nullable: true
        field:
          oneOf:
            - type: string
            - type: integer
          nullable: true
        currency:
          type: string
          nullable: true
        missing:
          type: array
          items:
            type: string
        errors:
          $ref: '#/components/schemas/ValidationErrors'
        message:
          type: string
          nullable: true
        constraint:
          type: string
          nullable: true
        tx_status:
          type: string
          nullable: true
        project_uid:
          type: string
          nullable: true
        widget_id:
          oneOf:
            - type: string
            - type: integer
          nullable: true
        expected:
          type: object
          additionalProperties: true
      additionalProperties: true
    TransactionWithNetwork:
      type: object
      required:
        - id
        - status
        - amount
        - currency_symbol
        - event_timestamp
        - expiration_time
        - tx_hash
        - wallet_address
      properties:
        id:
          type: string
        status:
          type: string
          enum:
            - pending
            - confirmed
            - failed
            - reverted
        amount:
          $ref: '#/components/schemas/DecimalString'
        currency_symbol:
          type: string
        wallet_address:
          type: string
        from_address:
          type: string
          nullable: true
        event_timestamp:
          type: integer
        expiration_time:
          type: string
          format: date-time
        tx_hash:
          type: string
        network:
          type: string
          nullable: true
    PaginationMeta:
      type: object
      required:
        - limit
        - offset
        - returned
      properties:
        limit:
          type: integer
        offset:
          type: integer
        returned:
          type: integer
    ValidationErrors:
      type: object
      description: Map of field names to validation error messages
      additionalProperties:
        type: array
        items:
          type: string
    DecimalString:
      type: string
      example: '10.50'
      description: Decimal amount as returned by JSON encoding

````