Products

A list of products that Xash Vend app will be offering

Products

The main products offered include:

  • Airtime

    • Direct airtime

    • Airtime vouchers

  • Data

    • Direct data

    • Data vouchers

  • Electricity

    • Token purchase

    • Bill repayment

    • Print receipt

  • DSTv

    • DSTv Zimbabwe

  • Load Funds

    • Bank deposit

    • Mobile money (Ecocash, Telecash etc.)

    • Gift cards

    • Crypto

    • Credit card

  • Share Credit (Xash transfer)

  • Reports

    • Sales reports

    • Commission reports

    • Account history

  • Help

    • Support chat

    • FAQs

    • User guides

Products that'll be added later

  • City council bills

  • WiFi vouchers

  • Insurance payments

  • DSTv South Africa

The core products are:

  • Airtime and data top-up

  • Bill payments

  • Loading funds/credit

  • Generating reports

  • Providing help resources

Get Core Products

This endpoint is used to retrieve the profile information of a registered user, including both personal and business information. If the user has not yet registered, the endpoint will return a Not Found error.

GetProducts

GET https://xvdev.xash.co.zw/api/v1/products

No request parameters are needed for this endpoint.

Headers

Name
Type
Description

Authorization*

String

This endpoint requires a Firebase Bearer token for authorization. The token should be included in the Authorization header in the format Bearer {token}.

[
  {
    "name": "Airtime",
    "description": "Purchase airtime directly or as a voucher",
    "image": "airtime.png",
    "supported": [],
    "sub_menu": [
      {
        "name": "Direct Airtime",
        "description": "Purchase airtime directly to your number",
        "image": "direct_airtime.png",
        "supported": {
          "network": [
            "Econet",
            "Telecel"
          ],
          "currency": [
            "USD"
          ]
        }
      },
      {
        "name": "Voucher Airtime",
        "description": "Purchase airtime as a voucher",
        "image": "voucher_airtime.png",
        "supported": {
          "network": [
            "Econet",
            "NetOne"
          ],
          "currency": [
            "USD"
          ]
        }
      }
    ]
  },
  {
    "name": "Data",
    "description": "Purchase mobile data",
    "image": "data.png",
    "supported": {
      "network": [
        "Econet",
        "NetOne"
      ],
      "currency": [
        "USD"
      ]
    },
    "sub_menu": []
  },
  {
    "name": "Electricity",
    "description": "Purchase electricity, repay bill, reprint receipt",
    "image": "electricity.png",
    "supported": {
      "currency": [
        "USD",
        "ZWL"
      ]
    },
    "sub_menu": []
  },
  {
    "name": "DSTV",
    "description": "Renew DSTV subscription",
    "image": "dstv.png",
    "supported": {
      "country": [
        "Zimbabwe"
      ]
    },
    "sub_menu": []
  },
  {
    "name": "Load Funds",
    "description": "Load account with various payment options",
    "image": "funds.png",
    "supported": {
      "deposit_methods": [
        "Crypto",
        "InnBucks",
        "Bank Deposit"
      ]
    },
    "sub_menu": []
  }
]

Last updated