Ozow Transactions API

Query transaction status by Ozow reference or merchant reference.

Operations 2

GET /GetTransaction Get transaction by Ozow transaction id #
GET /GetTransactionByReference Get transaction by merchant reference #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/ozow-transactions-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

ozow-transactions-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Ozow Banks Transactions API
  description: Ozow (formerly i-Pay) is a South African instant EFT / "Pay by Bank" payment gateway. Merchants create a payment request server-side, redirect the customer to the Ozow secure bank-selection flow, and receive a server-to-server notification plus browser redirect on completion. All write requests are authenticated with an ApiKey header and a SHA512 HashCheck computed by concatenating the request fields in documented order, appending the merchant PrivateKey, lower-casing, and hashing. Transactions are ZAR-only (CountryCode ZA, CurrencyCode ZAR).
  termsOfService: https://ozow.com/terms-and-conditions
  contact:
    name: Ozow Support
    email: support@ozow.com
    url: https://hub.ozow.com/docs
  version: '1.0'
servers:
- url: https://api.ozow.com
  description: Production
- url: https://stagingapi.ozow.com
  description: Staging / sandbox (also driven by the IsTest flag)
tags:
- name: Transactions
  description: Query transaction status by Ozow reference or merchant reference.
paths:
  /GetTransaction:
    get:
      operationId: getTransaction
      tags:
      - Transactions
      summary: Get transaction by Ozow transaction id
      description: Queries a transaction using the Ozow transaction id.
      security:
      - ApiKey: []
      parameters:
      - name: siteCode
        in: query
        required: true
        schema:
          type: string
        description: Merchant SiteCode.
      - name: transactionId
        in: query
        required: true
        schema:
          type: string
        description: Ozow transaction id (GUID).
      responses:
        '200':
          description: Array of matching transaction objects.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Transaction'
  /GetTransactionByReference:
    get:
      operationId: getTransactionByReference
      tags:
      - Transactions
      summary: Get transaction by merchant reference
      description: Queries a transaction using the merchant TransactionReference.
      security:
      - ApiKey: []
      parameters:
      - name: siteCode
        in: query
        required: true
        schema:
          type: string
        description: Merchant SiteCode.
      - name: transactionReference
        in: query
        required: true
        schema:
          type: string
        description: Merchant-supplied transaction reference.
      responses:
        '200':
          description: Array of matching transaction objects.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Transaction'
components:
  schemas:
    Transaction:
      type: object
      properties:
        transactionId:
          type: string
        merchantCode:
          type: string
        siteCode:
          type: string
        countryCode:
          type: string
        currencyCode:
          type: string
        amount:
          type: number
          format: double
        transactionReference:
          type: string
        bankReference:
          type: string
        status:
          type: string
          description: e.g. Complete, Cancelled, Error, PendingInvestigation, Abandoned.
        statusMessage:
          type: string
        isTest:
          type: boolean
        createdDate:
          type: string
          format: date-time
        paymentDate:
          type:
          - string
          - 'null'
          format: date-time
        hash:
          type: string
  securitySchemes:
    ApiKey:
      type: apiKey
      in: header
      name: ApiKey
      description: Merchant API key issued in the Ozow merchant dashboard (dash.ozow.com). Sent alongside a SHA512 HashCheck field computed with the merchant PrivateKey.
    BearerToken:
      type: http
      scheme: bearer
      description: OAuth-style bearer token obtained from the Ozow token endpoint, used by the Refunds and Payouts APIs. Tokens are reusable until expiry.