iMediaPORT
API
SF

SingFlex API

Enterprise REST API Platform
Version 3.0.3 Operational
2026-02-04 21:48:29
Secure High Performance RESTful Scalable
Server
PHP/8.4.17 (Development Server)
PHP Version
8.4.17
Client IP
127.0.0.1
Request Method
GET
Enterprise-grade API solutions built on robust architecture. Test, document, and deploy with confidence.

API Examples

  • System Info GET /api/?@=sysinfo
  • Health Check GET /api/?@=test.health&X-API-KEY=test-key&X-PLATFORM=web
  • List Users GET /api/?@=user.list&X-API-KEY=dev-key-123&X-PLATFORM=web
  • Create User POST /api/ with JSON: {"@":"user.create","data":{"name":"John","email":"john@example.com"}}
Full API Reference

Documentation NEW

# Access via API
GET /api/?@=docs.list
GET /api/?@=docs.get.README

Downloads

All downloads include complete documentation, examples, and enterprise support.

Quick API Test

# Test System Info (No Auth Required)
curl -X GET "https://dxl.singflex.com/api/?@=sysinfo"
# Test Health Check (Requires API Key)
curl -X GET "https://dxl.singflex.com/api/?@=test.health" \
-H "X-API-KEY: test-key" \
-H "X-PLATFORM: web"
# Quick JavaScript Example
fetch('/api/?@=sysinfo')
.then(response => response.json())
.then(data => console.log(data));