PHPackages                             flashcapture/client - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. flashcapture/client

ActiveLibrary[API Development](/categories/api)

flashcapture/client
===================

Official PHP SDK for FlashCapture API (RapidAPI). Async website screenshots, ad-blocking &amp; full-page capture.

v1.0.0(4mo ago)01MITPHPPHP ^8.0

Since Feb 20Pushed 4mo agoCompare

[ Source](https://github.com/Baptiste-Pignol/flashcapture-php)[ Packagist](https://packagist.org/packages/flashcapture/client)[ RSS](/packages/flashcapture-client/feed)WikiDiscussions main Synced today

READMEChangelogDependencies (1)Versions (2)Used By (0)

FlashCapture PHP SDK
====================

[](#flashcapture-php-sdk)

Official PHP client for [FlashCapture API](https://rapidapi.com/BaptistePignol/api/flashcapture-screenshot-api). Generate screenshots of modern websites, handle lazy-loading, ads, and full-page rendering.

Installation
------------

[](#installation)

```
composer require flashcapture/client
```

Usage
-----

[](#usage)

### Native PHP

[](#native-php)

```
require 'vendor/autoload.php';

use FlashCapture\Client;

$flash = new Client('YOUR_RAPID_API_KEY');

try {
    // One-liner: Capture and save to disk
    $flash->captureAndSave(
        'https://laravel.com',
        __DIR__ . '/laravel.png',
        [
            'fullPage' => true,
            'darkMode' => true,
            'width' => 1920
        ]
    );

    echo "Snapshot saved!";

} catch (Exception $e) {
    echo "Error: " . $e->getMessage();
}
```

### Laravel Integration

[](#laravel-integration)

You can easily use this in a Laravel Controller or Job.

```
public function store(Request $request)
{
    $client = new \FlashCapture\Client(env('RAPID_API_KEY'));

    // Start the job asynchronously
    $jobId = $client->capture($request->input('url'));

    // Dispatch a Laravel Job to check status later
    CheckScreenshotStatus::dispatch($jobId)->delay(now()->addSeconds(5));

    return response()->json(['job_id' => $jobId]);
}
```

Options
-------

[](#options)

OptionTypeDefaultDescription`fullPage`bool`false`Capture full scrollable page`darkMode`bool`false`Force dark mode rendering`hideElements`array`[]`CSS selectors to remove (ads, popups)[// ... voir la doc complète](https://rapidapi.com/BaptistePignol/api/flashcapture-screenshot-api)```

```

###  Health Score

32

—

LowBetter than 69% of packages

Maintenance76

Regular maintenance activity

Popularity1

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity39

Early-stage or recently created project

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

133d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/489aac483a95881d7bb9c5d805b1f121b6c45f323ab4bf70d652f7d72a9af2fb?d=identicon)[Baptiste-Pignol](/maintainers/Baptiste-Pignol)

---

Top Contributors

[![Baptiste-Pignol](https://avatars.githubusercontent.com/u/5666709?v=4)](https://github.com/Baptiste-Pignol "Baptiste-Pignol (1 commits)")

### Embed Badge

![Health badge](/badges/flashcapture-client/health.svg)

```
[![Health](https://phpackages.com/badges/flashcapture-client/health.svg)](https://phpackages.com/packages/flashcapture-client)
```

###  Alternatives

[statamic/cms

The Statamic CMS Core Package

4.8k3.6M984](/packages/statamic-cms)[tencentcloud/tencentcloud-sdk-php

TencentCloudApi php sdk

3741.3M47](/packages/tencentcloud-tencentcloud-sdk-php)[neuron-core/neuron-ai

The PHP Agentic Framework.

2.0k656.1k38](/packages/neuron-core-neuron-ai)[avalara/avataxclient

Client library for Avalara's AvaTax suite of business tax calculation and processing services. Uses the REST v2 API.

528.5M7](/packages/avalara-avataxclient)[eslazarev/wildberries-sdk

Wildberries OpenAPI clients (generated).

273.0k](/packages/eslazarev-wildberries-sdk)[files.com/files-php-sdk

Files.com PHP SDK

2481.1k](/packages/filescom-files-php-sdk)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
