Version API Service

Mobile app version checking endpoints

📱 iOS Version Endpoint
Get the latest iOS app version information
GET /version/ios.json
View iOS Version →
🤖 Android Version Endpoint
Get the latest Android app version information
GET /version/android.json
View Android Version →
API Response Format
Both endpoints return JSON with the following structure
{
  "version": "1.2.3",
  "build": "123",
  "minimumVersion": "1.0.0",
  "updateRequired": false,
  "updateAvailable": true,
  "releaseNotes": "Bug fixes and performance improvements",
  "downloadUrl": "https://...",
  "releaseDate": "2024-01-15T10:00:00Z",
  "platform": "ios" | "android"
}