Mandleva Developer Platform

Build with Mandleva.
Integrate Everything.

Every Mandleva product exposes a secure, versioned REST API. Whether you are integrating APESS into your SIEM, embedding SnapLink analytics into your CRM, or building on top of our marketplace data — the Mandleva API platform gives you full programmatic access.

5

Product APIs

REST

Architecture

v1

Current Version

HTTPS

All Traffic Encrypted

API Catalogue

Every Product. One Platform.

All current and future Mandleva products expose fully documented REST APIs. Build integrations today — and your stack grows as our product portfolio grows.

security

APESS

● API Available

Authentication Policy Enforcement Support System

Integrate enterprise-grade security compliance into your own dashboards, SIEM tools, and reporting pipelines. Access audit logs, Active Directory events, database activity, and policy enforcement data programmatically.

Base URL

https://api.mandleva.com/apess/v1

Auth

Bearer Token (JWT)

apiKey Endpoints

GET /events — Retrieve security event logs
GET /audit/ad — Active Directory audit trail
GET /audit/db — Database activity logs
GET /policies — Fetch active password policies
POST /policies — Create or update a policy
GET /reports — Compliance report generation
GET /sessions — Active session monitoring

boltIntegration Use Cases

check_circle

Pipe audit data into your SIEM or compliance dashboard

check_circle

Automate policy enforcement across multiple organisations

check_circle

Build custom compliance reports for regulators

check_circle

Monitor and alert on suspicious session activity

link

SnapLink

● API Available

Smart Link Tracking & Analytics

Create, manage, and track smart links at scale. Integrate SnapLink into your CRM, marketing automation, or e-commerce platform to power link analytics, campaign tracking, and growth insights programmatically.

Base URL

https://api.mandleva.com/snaplink/v1

Auth

API Key (Header)

apiKey Endpoints

POST /links — Create a new tracked link
GET /links — List all links for your account
GET /links/:id — Get a specific link details
DELETE /links/:id — Delete a link
GET /links/:id/stats — Click analytics for a link
GET /analytics — Account-wide analytics summary
POST /campaigns — Create a link campaign

boltIntegration Use Cases

check_circle

Bulk link creation via CRM automation

check_circle

Embed click analytics into your own dashboards

check_circle

Power campaign tracking for marketing platforms

check_circle

Integrate with WhatsApp, email, and SMS tools

school

SchoolFlow

◷ API Coming Soon

The Operating System for Schools

Connect your school management data to government portals, payment gateways, parent communication tools, and third-party education platforms. Full access to student records, fee management, and academic data.

Base URL

https://api.mandleva.com/schoolflow/v1

Auth

OAuth 2.0

apiKey Endpoints

GET /students — Student directory and profiles
GET /fees — Fee schedules and payment status
POST /fees/payments — Record a payment
GET /academics — Term results and performance data
GET /staff — Staff and teacher directory
POST /notifications — Send parent notifications
GET /reports — School performance reports

boltIntegration Use Cases

check_circle

Integrate with government education reporting portals

check_circle

Connect to payment processors for online fee collection

check_circle

Sync student data with learning management systems

check_circle

Power parent communication apps and portals

apartment

Apartment.io

◷ API Coming Soon

Property Lifecycle Platform

Access the full Apartment.io property graph — listings, tenant records, lease agreements, agent networks, and journey data. Build property search engines, agent tools, and real estate analytics on top of our data layer.

Base URL

https://api.mandleva.com/apartment/v1

Auth

Bearer Token (JWT)

apiKey Endpoints

GET /properties — Search and filter property listings
POST /properties — Create a new listing
GET /properties/:id — Full property details
GET /tenants — Tenant directory and profiles
GET /leases — Active lease agreements
POST /leases — Create a lease record
GET /agents — Agent network directory

boltIntegration Use Cases

check_circle

Build property search and discovery tools

check_circle

Integrate with mortgage and finance platforms

check_circle

Power agent CRM and portfolio management tools

check_circle

Create property analytics and market intelligence dashboards

grass

FarmNest

◷ API Coming Soon

Direct Farm Market

Connect directly to the FarmNest marketplace. Access farmer profiles, produce listings, real-time pricing, order management, and logistics data. Build supply chain tools, agro-analytics platforms, and buyer integrations.

Base URL

https://api.mandleva.com/farmnest/v1

Auth

API Key (Header)

apiKey Endpoints

GET /produce — Browse available farm produce
GET /farmers — Farmer profiles and ratings
POST /orders — Place a direct order
GET /orders — Order history and tracking
GET /prices — Real-time market pricing data
GET /locations — Produce availability by region
POST /disputes — Raise a transaction dispute

boltIntegration Use Cases

check_circle

Integrate FarmNest supply data into logistics platforms

check_circle

Build agro-analytics and market intelligence tools

check_circle

Connect with payment processors and escrow services

check_circle

Power buyer procurement and inventory management systems

Platform Standards

Built for Developers

Every Mandleva API is built to the same standards — consistent, documented, secure, and production-ready from day one.

lock

Secure by Design

Every API is secured with industry-standard authentication — JWT Bearer tokens, API Keys, and OAuth 2.0. All traffic is encrypted over HTTPS. APESS itself enforces the same security standards it monitors.

data_object

RESTful & JSON

All Mandleva APIs follow REST conventions. Every request returns clean, consistent JSON responses with predictable status codes, error messages, and pagination.

history

Versioned APIs

Every API is versioned from day one (v1, v2…). We never make breaking changes without a new version and a deprecation notice. Build with confidence — your integrations will not break without warning.

speed

Rate Limits & SLAs

Fair rate limits ensure reliability for all developers. Enterprise clients receive higher limits and dedicated SLAs. All rate limit headers are included in every response.

webhook

Webhooks

Subscribe to real-time events via webhooks. Get notified instantly when security events fire, links are clicked, orders are placed, or fees are paid — without polling.

description

Full Documentation

Every endpoint is documented with request examples, response schemas, error codes, and code samples in JavaScript, Python, and cURL. Interactive API explorers coming soon.

Getting Started

From Zero to Integration

We make it as easy as possible to get up and running. No long approval processes. No black boxes. Just clean APIs and clear documentation.

01

Request API Access

Submit your developer registration below. Tell us which product(s) you are integrating with and what you are building. We review every application personally.

02

Receive Your Credentials

Within 2 business days, you will receive your API keys or OAuth credentials, your base URL, rate limit tier, and a link to the relevant product documentation.

03

Make Your First Request

Use the credentials to authenticate and hit your first endpoint. Our documentation includes ready-to-run cURL, JavaScript, and Python examples for every endpoint.

04

Build & Scale

Build your integration in your development environment. When you are ready for production, notify us and we will migrate your credentials and increase your rate limits.

Quick Example

Your First API Call in 30 Seconds

Every Mandleva API follows the same pattern — authenticate with your credentials, hit the endpoint, get clean JSON back. No complex setup. No proprietary SDKs required.

check_circle

Standard HTTP methods (GET, POST, PUT, DELETE)

check_circle

JSON request and response bodies throughout

check_circle

Consistent error format with descriptive messages

check_circle

Rate limit headers on every response

check_circle

Pagination via cursor or offset — your choice

example.sh
# Retrieve APESS security events
curl -X GET \
"https://api.mandleva.com/apess/v1/events" \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json"
# Response
{
"status": "success",
"total": 1284,
"events": [
{
"id": "evt_01JX9KZ",
"type": "login_failure",
"severity": "high"
}
]
}
description

Documentation

Full API reference for every endpoint — request parameters, response schemas, error codes, and working examples in multiple languages.

Coming Soon
support_agent

Developer Support

Stuck on an integration? Our team reviews every developer query. Reach out via email and expect a response within 2 business days.

Contact Supportarrow_forward
bug_report

Report an Issue

Found a bug or inconsistency in the API? Report it and we will investigate. All confirmed issues are fixed in the next release cycle.

Report Issuearrow_forward
Developer Access

Request API Access

API access is currently by request only. Fill in the contact form below — tell us which product API you need, what you are building, and how you intend to use it. We will get back to you within 2 business days.

By requesting API access you agree to the Mandleva API Terms of Use. All API credentials are issued subject to review and may be revoked for misuse.

Build Something Great

The Mandleva platform grows as you grow.

Every new product we launch comes with a fully documented API from day one. Build on MANDLEVA today — and your integration scales automatically across the entire Mandleva portfolio.

Chat with us