PHPackages                             chipslays/imgfy-api - 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. chipslays/imgfy-api

ActiveLibrary[API Development](/categories/api)

chipslays/imgfy-api
===================

Official API wrapper for Imgfy.cf

1.0.1(5y ago)07MITPHPPHP &gt;=7.4

Since Feb 5Pushed 5y ago1 watchersCompare

[ Source](https://github.com/chipslays/imgfy-api)[ Packagist](https://packagist.org/packages/chipslays/imgfy-api)[ RSS](/packages/chipslays-imgfy-api/feed)WikiDiscussions master Synced yesterday

READMEChangelog (2)DependenciesVersions (3)Used By (0)

🎨 Imgfy [API](https://imgfy.cf/api)
===================================

[](#-imgfy-api)

[**Imgfy**](https://imgfy.cf/) - is a simple and beautiful service for uploading images.

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

[](#installation)

```
$ composer require chipslays/imgfy-api
```

Methods
-------

[](#methods)

### `upload`

[](#upload)

Upload image to Imgfy.cf:

```
Imgfy::upload(string|array $images [, bool $secretly = false]) : array

```

Upload single image:

```
use Chipslays\Imgfy\Imgfy;

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

$response = Imgfy::upload('potato.png');

print_r($response);

Array
(
    [0] => Array
        (
            [filename] => potato.png
            [preview] => https://imgfy.cf/hs7oe
            [source] => https://imgfy.cf/file/b49432863e12495ddf099.png
        )
)
```

Upload multiple images:

```
use Chipslays\Imgfy\Imgfy;

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

$response = Imgfy::upload([
    'potato.png',
    'chips.jpg',
]);

print_r($response);

Array
(
    [0] => Array
        (
            [filename] => potato.png
            [preview] => https://imgfy.cf/hs7oe
            [source] => https://imgfy.cf/file/b49432863e12495ddf099.png
        )
    [1] => Array
        (
            [filename] => chips.png
            [preview] => https://imgfy.cf/hs7od
            [source] => https://imgfy.cf/file/b39423123e15595dfd019.png
        )
)
```

Generate super-secretly links:

```
use Chipslays\Imgfy\Imgfy;

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

$response = Imgfy::upload('potato.png', true);

print_r($response);

Array
(
    [0] => Array
        (
            [filename] => potato.png
            [preview] => https://imgfy.cf/z:maewitZhZRKPD
            [source] => https://imgfy.cf/file/b32166863eaf495ddf079.png
        )
)
```

Short alias `upload_imgfy` function.

```
$response = upload_imgfy('potato.png');
$response = upload_imgfy(['potato.png', 'chips.jpg']);

// super-secretly link
$response = upload_imgfy('potato.png', true);
$response = upload_imgfy(['potato.png', 'chips.jpg'], true);
```

###  Health Score

23

—

LowBetter than 27% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity54

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

Every ~0 days

Total

2

Last Release

1920d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/19103498?v=4)[chipslays](/maintainers/chipslays)[@chipslays](https://github.com/chipslays)

---

Top Contributors

[![chipslays](https://avatars.githubusercontent.com/u/19103498?v=4)](https://github.com/chipslays "chipslays (8 commits)")

---

Tags

image-hostimage-hostingimage-uploadimage-upload-phpimage-uploaderapiimageuploaderimage-hosting

### Embed Badge

![Health badge](/badges/chipslays-imgfy-api/health.svg)

```
[![Health](https://phpackages.com/badges/chipslays-imgfy-api/health.svg)](https://phpackages.com/packages/chipslays-imgfy-api)
```

###  Alternatives

[mtownsend/remove-bg

A PHP package to interface with the remove.bg api.

183315.4k](/packages/mtownsend-remove-bg)[dantsu/php-osm-static-api

PHP library to easily get static image from OpenStreetMap (OSM), add markers and draw lines.

97141.0k1](/packages/dantsu-php-osm-static-api)[jordikroon/google-vision

Google Vision Api for PHP (https://cloud.google.com/vision/)

6374.9k1](/packages/jordikroon-google-vision)[m165437/laravel-blueprint-docs

API Blueprint Renderer for Laravel

22779.0k](/packages/m165437-laravel-blueprint-docs)[image-charts/image-charts

Official Image-Charts.com API client library

2762.3k](/packages/image-charts-image-charts)[serpwow/google-search-results

Google Search Results PHP package via SerpWow.com

1931.8k1](/packages/serpwow-google-search-results)

PHPackages © 2026

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