> ## 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 Processors

> List all processors with pagination

# List Processors

Retrieve a paginated list of all payment processors.

## Endpoint

```http theme={null}
GET /api/v1/processors
```

## Authentication

<ParamField header="Authorization" type="string" required>
  Bearer token (Admin JWT)
</ParamField>

## Query Parameters

<ParamField query="limit" type="integer" default="50">
  Results per page
</ParamField>

<ParamField query="offset" type="integer" default="0">
  Pagination offset
</ParamField>

## Response

```json theme={null}
{
  "processors": [
    {
      "id": "proc_abc123",
      "name": "Smart PAY Merchant",
      "phone_number": "+23277123456",
      "email": "merchant@smartpay.sl",
      "status": "active",
      "created_at": "2025-01-15T10:30:00Z"
    }
  ],
  "total_count": 25,
  "limit": 50,
  "offset": 0
}
```

## Errors

| Code | Description           |
| ---- | --------------------- |
| 401  | Unauthorized          |
| 500  | Internal server error |


## OpenAPI

````yaml olive-openapi.json GET /processors
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:
  /processors:
    get:
      tags:
        - Processors
      summary: List all processors
      description: Retrieve list of all payment processors with pagination
      parameters:
        - description: Limit
          name: limit
          in: query
          schema:
            type: integer
            default: 50
        - description: Offset
          name: offset
          in: query
          schema:
            type: integer
            default: 0
      responses:
        '200':
          description: List of processors
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
        '500':
          description: Server error
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
      security:
        - BearerAuth: []
components:
  securitySchemes:
    BearerAuth:
      description: >-
        JWT token from admin login for administrative operations. Format:
        'Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...'
      type: apiKey
      name: Authorization
      in: header

````