Files
wevads-arsenal/public/test-api-raw.php

10 lines
191 B
PHP

<?php
header('Content-Type: application/json');
echo json_encode([
'status' => 'OK',
'message' => 'WEVADS API Test',
'timestamp' => date('Y-m-d H:i:s')
], JSON_PRETTY_PRINT);
?>