koti42 Hazır pakete gerek yok gibi. Sizden istenen şu:
curl -X POST \
-H "Authorization: Bearer <API_TOKEN>" \
-F file=@/Users/kyle/Desktop/video.mp4 \
https://api.cloudflare.com/client/v4/accounts/<ACCOUNT_ID>/stream
yani
$accountId = 123;
$token = config('services.cloudflare.token');
$response = Http::asForm()
->withToken($token)
->attach('file', $request->file('file'), 'video.mp4')
->post("https://api.cloudflare.com/client/v4/accounts/{$accountId}/stream");