{% extends 'dashboard/header.html' %} {% load static %} {% block title %}PEZA DEVS - Build with Malawi's Leading APIs{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
Trusted by 500+ Developers

Build with Malawi's Leading APIs

Access OCR, location services, and more through our developer-friendly API platform.

99.9% Uptime
<50ms Response
{% include 'dashboard/qr.html' %} {% include 'dashboard/bot.html' %}
OCR Demo
api_request.py
# Quick Start Example import requests response = requests.post( "https://api.pezamw.com/v1/ocr/text", headers={"X-API-Key": "pk_live_***"}, files={"image": open("doc.jpg", "rb")} ) print(response.json())

Everything You Need to Build

Production-ready APIs designed to solve real-world problems.

Smart OCR

Extract text from images, documents, receipts, and IDs with industry-leading accuracy.

  • Document parsing
  • Receipt analysis

Location Intelligence

Find hospitals, clinics, pharmacies, and essential services across Malawi.

  • Healthcare locations
  • Emergency services

Flood Detection

Computer vision API for detecting flood areas in satellite imagery.

  • Satellite analysis
  • Risk assessment

Get Started in Minutes

Three steps to your first API call.

1

Create Account

Sign up for free and get instant access.

2

Get API Key

Generate API keys from your dashboard.

3

Start Building

Make your first API call.

Python
# Install the SDK pip install peza-sdk # Initialize client from peza import Client client = Client(api_key="pk_live_your_key_here") # Make your first request result = client.ocr.extract_text( image="path/to/document.jpg" )

Simple, Transparent Pricing

Start for free, scale as you grow.

Starter

Free

Perfect for testing

  • 100 requests/month
  • 3 API keys
Get Started Free

Enterprise

Custom

For large scale

  • Unlimited requests
  • 24/7 Phone support
  • SLA guarantee
Contact Sales

Loved by Developers

See what developers are building

TM

Takondwa Mwase

HealthTech Solutions

"The location API has been crucial for our hospital finder app. Integration was seamless."

CN

Chisomo Ngwira

Fintech Startup

"OCR API saved us months of development time. The accuracy is outstanding!"

PM

Patrick Mbewe

AgriTech Solutions

"The flood detection API is a game-changer for our early warning system."

Ready to Start Building?

Join hundreds of developers building the future with Peza APIs. Get started for free, no credit card required.

{% endblock %} {% block extra_js %} {% endblock %}