Skip to main content

API Status Page

Monitor the real-time status of the Pagamio VAS API and view historical uptime data, scheduled maintenance, and incident reports.

Current Status

Production API

Status: 🟢 Operational

  • API Endpoint: https://vas-api.pagamio.tech
  • Current Uptime: 99.98% (Last 30 days)
  • Last Incident: October 15, 2025 (Resolved)
  • Average Response Time: 1.2 seconds

Sandbox API

Status: 🟢 Operational

Service Components

Monitor individual service components:

ComponentStatusResponse TimeUptime (30d)
🟢 API GatewayOperational150ms99.99%
🟢 AuthenticationOperational200ms99.98%
🟢 Transaction ProcessingOperational1.2s99.95%
🟢 Product CatalogOperational180ms99.99%
🟢 ReportingOperational350ms99.97%

Status Indicators

  • 🟢 Operational: All systems functioning normally
  • 🟡 Degraded Performance: Service available but slower than normal
  • 🟠 Partial Outage: Some functionality unavailable
  • 🔴 Major Outage: Service unavailable or severely impacted
  • 🔵 Maintenance: Scheduled maintenance in progress

Live Status Page

For real-time status updates and to subscribe to notifications:

Visit: https://status.pagamio.tech

Features:

  • ✅ Real-time service status
  • ✅ Incident history
  • ✅ Scheduled maintenance calendar
  • ✅ Subscribe to email/SMS notifications
  • ✅ RSS feed available
  • ✅ Historical uptime data

Check API Health Programmatically

Health Check Endpoint

Use this endpoint to verify API availability in your monitoring tools:

GET https://vas-api.pagamio.tech/health

Response (Healthy):

{
"status": "healthy",
"timestamp": "2025-10-21T10:30:00Z",
"version": "1.0.0",
"services": {
"database": "healthy",
"cache": "healthy",
"queue": "healthy"
},
"uptime_seconds": 2592000
}

Response (Degraded):

{
"status": "degraded",
"timestamp": "2025-10-21T10:30:00Z",
"version": "1.0.0",
"services": {
"database": "healthy",
"cache": "degraded",
"queue": "healthy"
},
"uptime_seconds": 2592000,
"message": "Some services experiencing issues"
}

Monitor from Your Application

Example monitoring script:

import requests
import time

def check_api_health():
try:
response = requests.get(
'https://vas-api.pagamio.tech/health',
timeout=5
)

if response.status_code == 200:
data = response.json()
print(f"API Status: {data['status']}")
return data['status'] == 'healthy'
else:
print(f"API returned status code: {response.status_code}")
return False

except requests.exceptions.RequestException as e:
print(f"API health check failed: {e}")
return False

# Check every 5 minutes
while True:
if not check_api_health():
# Alert your team
send_alert("Pagamio API health check failed")
time.sleep(300)

Current Incidents

Active Incidents

No current incidents 🎉

Last checked: October 21, 2025 at 10:30 SAST

Recent Incidents

October 15, 2025 - Intermittent Transaction Failures

Status: ✅ Resolved
Duration: 2 hours 15 minutes
Impact: Approximately 3% of transactions failed
Affected Services: Transaction processing for Vodacom products
Root Cause: Third-party provider network congestion
Resolution: Provider resolved network issue; implemented additional retry logic

Timeline:

  • 14:30 SAST: Issue detected by monitoring
  • 14:45 SAST: Customers notified
  • 15:00 SAST: Root cause identified
  • 16:15 SAST: Provider confirmed resolution
  • 16:45 SAST: Verified all services operational

October 8, 2025 - API Response Time Degradation

Status: ✅ Resolved
Duration: 45 minutes
Impact: Response times 2-3x normal (2-4s instead of 1-2s)
Affected Services: All API endpoints
Root Cause: Database connection pool exhaustion
Resolution: Increased connection pool size; optimized queries

Scheduled Maintenance

Upcoming Maintenance

November 3, 2025 - Monthly Infrastructure Update

Date: Sunday, November 3, 2025
Time: 02:00 - 06:00 SAST
Duration: Up to 4 hours
Impact: No downtime expected (rolling updates)
Reason: Security patches and infrastructure upgrades

What's Being Updated:

  • Operating system security patches
  • Database version upgrade
  • SSL certificate renewal
  • Load balancer configuration optimization

Expected Impact:

  • No API downtime (rolling updates)
  • Potential for brief (<5s) request delays
  • Sandbox may be briefly unavailable

November 17, 2025 - Provider Integration Upgrade

Date: Sunday, November 17, 2025
Time: 03:00 - 05:00 SAST
Duration: Up to 2 hours
Impact: MTN products may be temporarily unavailable
Reason: Upgrade MTN provider integration

Maintenance History

DateDurationImpactReason
Oct 6, 20253h 20mNoneMonthly updates
Sep 15, 20251h 45mNoneSecurity patches
Sep 1, 20254h 10mMinorDatabase upgrade
Aug 20, 20252h 30mNoneInfrastructure scaling

Subscribe to Status Updates

Stay informed about API status, incidents, and maintenance:

Email Notifications

Subscribe at: https://status.pagamio.tech/subscribe

You'll receive:

  • Incident notifications (immediate)
  • Maintenance announcements (7 days advance)
  • Resolution confirmations
  • Monthly uptime reports

SMS Notifications

For critical issues only:

  • Text "SUBSCRIBE" to +27 82 123 4567
  • Receive P1/P2 incident alerts

Webhook Integration

Integrate status updates into your systems:

POST https://your-domain.com/pagamio-status-webhook
Content-Type: application/json

{
"event_type": "incident.created",
"incident": {
"id": "INC-20251015-001",
"severity": "high",
"title": "Transaction processing delays",
"status": "investigating",
"created_at": "2025-10-15T14:30:00Z",
"updated_at": "2025-10-15T14:45:00Z",
"message": "We are investigating increased transaction processing times."
}
}

Event Types:

  • incident.created - New incident reported
  • incident.updated - Incident status changed
  • incident.resolved - Incident resolved
  • maintenance.scheduled - Maintenance announced
  • maintenance.started - Maintenance begun
  • maintenance.completed - Maintenance finished

RSS Feed

Add to your RSS reader:

https://status.pagamio.tech/rss

Historical Performance

Monthly Uptime (Last 12 Months)

MonthUptimeDowntimeIncidents
Oct 202599.98%8m 38s1
Sep 202599.95%21m 36s2
Aug 202599.99%4m 19s0
Jul 202599.92%34m 33s1
Jun 202599.97%12m 57s1
May 202599.99%4m 19s0
Apr 202599.94%25m 55s2
Mar 202599.98%8m 38s1
Feb 202599.99%4m 3s0
Jan 202599.96%17m 18s1
Dec 202499.97%12m 57s1
Nov 202499.98%8m 38s0

12-Month Average: 99.96%

MonthAverage95th Percentile99th Percentile
Oct 20251.2s2.8s4.1s
Sep 20251.3s2.9s4.3s
Aug 20251.1s2.6s3.9s
Jul 20251.4s3.1s4.5s

Provider Status

Third-party service providers that may affect our API:

ProviderTypeStatusSLA
🟢 VodacomNetwork OperatorOperational99.5%
🟢 MTNNetwork OperatorOperational99.5%
🟢 TelkomNetwork OperatorOperational99.0%
🟢 Cell CNetwork OperatorOperational99.0%
🟢 AWSCloud HostingOperational99.99%

Provider status updated every 15 minutes

Troubleshooting Connection Issues

If you're experiencing issues but status shows operational:

1. Check Your Network

# Test connectivity to API
ping vas-api.pagamio.tech

# Test HTTPS connectivity
curl -I https://vas-api.pagamio.tech/health

2. Verify DNS Resolution

# Check DNS lookup
nslookup vas-api.pagamio.tech

# Expected result:
# Server: 8.8.8.8
# Address: 8.8.8.8#53
# Name: vas-api.pagamio.tech
# Address: 185.x.x.x

3. Check Firewall/Proxy

  • Ensure outbound HTTPS (port 443) is allowed
  • Whitelist IP ranges if needed
  • Check corporate proxy settings

4. Test from Different Network

  • Try mobile data vs office WiFi
  • Use different ISP if possible
  • Test from cloud instance

5. Contact Support

If API status shows operational but you still have issues:

  • Email: [email protected]
  • Include: Timestamp, your IP address, error messages
  • Provide: traceroute and curl output

API Status Definitions

Operational (🟢)

  • All systems functioning normally
  • Response times within SLA
  • Error rate < 0.1%

Degraded Performance (🟡)

  • Service available but slower
  • Response times 1.5-3x normal
  • Error rate 0.1% - 1%

Partial Outage (🟠)

  • Some functionality unavailable
  • Specific products/regions affected
  • Error rate 1% - 10%

Major Outage (🔴)

  • Service unavailable or severely impacted
  • Unable to process transactions
  • Error rate > 10%

Maintenance (🔵)

  • Planned maintenance in progress
  • Some services may be temporarily unavailable
  • Updates provided on status page

Last updated: October 2025
Page auto-refreshes every 60 seconds