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

# List all transactions (Admin)

> Get all transactions with optional filtering (admin only)



## OpenAPI

````yaml /olive-openapi.json get /admin/transactions
openapi: 3.0.0
info:
  description: >-
    API Gateway for OLIVE NFC Card Payment System - Comprehensive payment, card
    management, agent operations, and admin authentication. All /api/v1 routes
    require authentication using either API Key or JWT token.
  title: OLIVE NFC Card Payment API
  termsOfService: http://swagger.io/terms/
  contact:
    name: API Support
    email: support@olive.sl
  license:
    name: Apache 2.0
    url: http://www.apache.org/licenses/LICENSE-2.0.html
  version: 1.0.0
servers:
  - url: https://olive-gateway-a6ba.onrender.com/api/v1
security: []
paths:
  /admin/transactions:
    get:
      tags:
        - Admin
      summary: List all transactions (Admin)
      description: Get all transactions with optional filtering (admin only)
      parameters:
        - description: Number of records (max 100)
          name: limit
          in: query
          schema:
            type: integer
            default: 50
        - description: Offset for pagination
          name: offset
          in: query
          schema:
            type: integer
            default: 0
        - description: Filter by transaction type (e.g., agent_cashin, transfer_p2p)
          name: transaction_type
          in: query
          schema:
            type: string
        - description: Filter by status (e.g., completed, pending)
          name: status
          in: query
          schema:
            type: string
        - description: Start date filter (YYYY-MM-DD)
          name: start_date
          in: query
          schema:
            type: string
        - description: End date filter (YYYY-MM-DD)
          name: end_date
          in: query
          schema:
            type: string
        - description: Filter by user/subscriber ID
          name: user_id
          in: query
          schema:
            type: string
      responses:
        '200':
          description: List of transactions
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
      security:
        - ApiKeyAuth: []
        - BearerAuth: []
components:
  securitySchemes:
    ApiKeyAuth:
      description: >-
        API Key for third-party integrations (WhatsApp, Smart PAY, VULT).
        Format: 'Bearer olive_live_xxxxxxxxxxxxx'
      type: apiKey
      name: Authorization
      in: header
    BearerAuth:
      description: >-
        JWT token from admin login for administrative operations. Format:
        'Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...'
      type: apiKey
      name: Authorization
      in: header

````