← DocumentationData & services · php

HTTP, HTTPS, FTP and reports

Connect external services, controlled file transfers and report workflows.

01

Transport services

HTTP and FTP capabilities sit behind application services so credentials and retry behavior remain centralized.

02

Output workflows

Report components transform validated data into defined business outputs.

03

Visual result

Examples are deterministic previews. PHP and shell code is never executed in the browser or on the public server.

php
$response = Http::request('GET', $endpoint, [
    'Accept' => 'application/json',
]);

$ftp = new Ftp($host, $credentials);
$ftp->download('/exports/orders.csv', $target);
Visual result deterministic

HTTP, HTTPS, FTP and reports

HTTP
GET · JSON
FTP
Controlled download
Report
Validated source data