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 today

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 22% 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

1941d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/ecd18ad50dc6321312636f90afad3cf86f9c90084b538478bf890e990e474973?d=identicon)[gregavola](/maintainers/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

[stripe/stripe-php

Stripe PHP Library

4.0k143.3M478](/packages/stripe-stripe-php)[twilio/sdk

A PHP wrapper for Twilio's API

1.6k92.9M271](/packages/twilio-sdk)[knplabs/github-api

GitHub API v3 client

2.2k15.8M187](/packages/knplabs-github-api)[facebook/php-business-sdk

PHP SDK for Facebook Business

90121.9M34](/packages/facebook-php-business-sdk)[meilisearch/meilisearch-php

PHP wrapper for the Meilisearch API

73813.7M114](/packages/meilisearch-meilisearch-php)[google/gax

Google API Core for PHP

263103.1M454](/packages/google-gax)

PHPackages © 2026

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