PHPackages                             team-gc/php-screensnaps - 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. team-gc/php-screensnaps

ActiveLibrary[API Development](/categories/api)

team-gc/php-screensnaps
=======================

A simple PHP Library to interact with the screensnaps.io service

1.0.0(5y ago)07MITPHPPHP &gt;=7.0

Since Jan 15Pushed 5y ago1 watchersCompare

[ Source](https://github.com/Team-GC/php-screensnaps)[ Packagist](https://packagist.org/packages/team-gc/php-screensnaps)[ Docs](https://github.com/team-gc/php-screensnaps)[ RSS](/packages/team-gc-php-screensnaps/feed)WikiDiscussions master Synced 3w ago

READMEChangelog (1)Dependencies (2)Versions (2)Used By (0)

php-screensnaps
===============

[](#php-screensnaps)

[![Build](https://github.com/Team-GC/php-screensnaps/workflows/CI/badge.svg)](https://github.com/Team-GC/php-screensnaps/workflows/CI/badge.svg)

A simple php library to interact with the APIs for screenshot generation on screensnaps.io.

Requirements
------------

[](#requirements)

PHP7+ CURL

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

[](#installation)

You can install the package via composer:

```
composer require team-gc/php-screensnaps

```

Documentation
=============

[](#documentation)

To get stared, you'll need an `api_key` and `user_id` to make requests, you can sign up for free at .

Methods
-------

[](#methods)

Refer to the documentation on  on how to make certain calls.

Intialize Class
---------------

[](#intialize-class)

```
use TeamGC\ScreensnapsIO;

$screensnapsIO = new ScreensnapsIO(["apiKey" => API_KEY_HERE, "userId" => USER_ID_HERE]);
```

### `/screenshots`

[](#screenshots)

Get the last 15 screenshots on your account.

```
$params =[
    "offset" => 0,
    "limit" => 15
];

try {
    $snaps = $screensnapsIO->screenshots($params);
} catch (Exception $e) {
    echo $e->getMessage();
}
```

### `/screenshot`

[](#screenshot)

Take a screenshot of of URL or HTML depending on your params

```
$params =[
    "url" => "https://google.com"
];

try {
    $snaps = $screensnapsIO->screenshot($params);
} catch (Exception $e) {
    echo $e->getMessage();
}
```

### `/status`

[](#status)

This is a ping to let you know the status of the service.

```
try {
    $snaps = $screensnapsIO->status();
} catch (Exception $e) {
    echo $e->getMessage();
}
```

### Testing

[](#testing)

Make sure to create a `.env` file in your `tests` folder like this:

```
USER_ID="USER_ID_HERE"
API_KEY="API_KEY_HERE"

```

```
composer test tests
```

Credits
-------

[](#credits)

- [Greg Avola](https://github.com/team-gc)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

22

—

LowBetter than 21% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity48

Maturing project, gaining track record

 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

1994d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/648949?v=4)[Greg Avola](/maintainers/gregavola)[@gregavola](https://github.com/gregavola)

---

Top Contributors

[![gregavola](https://avatars.githubusercontent.com/u/648949?v=4)](https://github.com/gregavola "gregavola (11 commits)")

---

Tags

team-gcphp-screensnaps

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/team-gc-php-screensnaps/health.svg)

```
[![Health](https://phpackages.com/badges/team-gc-php-screensnaps/health.svg)](https://phpackages.com/packages/team-gc-php-screensnaps)
```

###  Alternatives

[exsyst/swagger

A php library to manipulate Swagger specifications

35916.4M7](/packages/exsyst-swagger)[hubspot/api-client

Hubspot API client

24016.2M20](/packages/hubspot-api-client)[pocketmine/bedrock-protocol

An implementation of the Minecraft: Bedrock Edition protocol in PHP

172445.0k13](/packages/pocketmine-bedrock-protocol)[botman/driver-telegram

Telegram driver for BotMan

93459.5k6](/packages/botman-driver-telegram)

PHPackages © 2026

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