```php title="PHP" post('http://localhost:8000/extract', [ 'multipart' => [ [ 'name' => 'file', 'contents' => $fileContent, 'filename' => basename($filePath), 'headers' => ['Content-Type' => 'application/pdf'], ], ], ]); $result = json_decode((string)$response->getBody(), true); echo $result['content'] ?? ''; } catch (Exception $e) { echo "Request failed: " . $e->getMessage() . "\n"; } ```