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

# Currency Uptime Checker

> Monitor the real-time health status of payment services across different currencies. Use this endpoint to check service availability before initiating transactions or to display the status on your integration's dashboard.



## OpenAPI

````yaml GET /api/b2b/status/currencies
openapi: 3.1.0
info:
  title: Zerocash API
  version: 1.0.0
  description: >-
    The Zerocash API lets you collect payments (charges) and disburse funds
    (payouts) across supported markets through a single, unified integration.
servers:
  - url: https://api.zerocash.tech
security:
  - bearerAuth: []
tags:
  - name: Authentication
    description: Obtain and manage API credentials.
  - name: Reference Data
    description: Look up countries, banks, operators, and rates before transacting.
  - name: Charges
    description: Collect payments from your customers.
  - name: Payouts
    description: Disburse funds to recipients.
  - name: Transactions
    description: Retrieve and reconcile transactions.
  - name: Webhooks
    description: Receive and replay real-time event notifications.
paths:
  /api/b2b/status/currencies:
    get:
      tags:
        - Reference Data
      summary: Currency Uptime Checker
      description: >-
        Monitor the real-time health status of payment services across different
        currencies. Use this endpoint to check service availability before
        initiating transactions or to display the status on your integration's
        dashboard.
      operationId: currency-uptime-checker
      parameters:
        - name: timeframeInHours
          in: query
          description: Maximum of 24 hours and a minimum of 1 hour. Defaults to 1.
          schema:
            type: string
        - name: currency
          in: query
          description: Filter by specific currency code (e.g., `KES`, `NGN`, `UGX`)
          schema:
            type: string
      responses:
        '200':
          description: '200'
          content:
            application/json:
              examples:
                Result:
                  value:
                    success: true
                    data:
                      - currency: KES
                        overallStatus: healthy
                        collectionStatus: healthy
                        payoutStatus: healthy
                        lastUpdated: '2025-10-27T14:30:00.000Z'
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: true
                    default: true
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        currency:
                          type: string
                          example: KES
                        overallStatus:
                          type: string
                          example: healthy
                        collectionStatus:
                          type: string
                          example: healthy
                        payoutStatus:
                          type: string
                          example: healthy
                        lastUpdated:
                          type: string
                          example: '2025-10-27T14:30:00.000Z'
        '400':
          description: '400'
          content:
            application/json:
              examples:
                Result:
                  value: {}
              schema:
                type: object
                properties: {}
      deprecated: false
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````