PHPackages                             axp-dev/dribbble-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. axp-dev/dribbble-api

ActiveLibrary[API Development](/categories/api)

axp-dev/dribbble-api
====================

Simple PHP library for dribbble

1.6.0(8y ago)2351[1 PRs](https://github.com/axp-dev/dribbble-api/pulls)MITPHPPHP &gt;=5.6.4

Since Aug 12Pushed 3y agoCompare

[ Source](https://github.com/axp-dev/dribbble-api)[ Packagist](https://packagist.org/packages/axp-dev/dribbble-api)[ Docs](https://github.com/axp-dev/dribbble-api)[ RSS](/packages/axp-dev-dribbble-api/feed)WikiDiscussions master Synced 3d ago

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

Dribbble API for PHP
====================

[](#dribbble-api-for-php)

[![Latest Stable Version](https://camo.githubusercontent.com/74608d29c7fd4eeca7f274d3897c5d935632ed63501a7926f369d0c501197c05/68747470733a2f2f706f7365722e707567782e6f72672f6178702d6465762f6472696262626c652d6170692f762f737461626c65)](https://packagist.org/packages/axp-dev/dribbble-api)[![Latest Unstable Version](https://camo.githubusercontent.com/183ab15c5262ff128b77e80c5b9501dba5beffe96a6f6cc22cb818222f04018d/68747470733a2f2f706f7365722e707567782e6f72672f6178702d6465762f6472696262626c652d6170692f762f756e737461626c65)](https://packagist.org/packages/axp-dev/dribbble-api)[![License](https://camo.githubusercontent.com/4ad75e24f3df4488f8c88b83d308ecdbc6ae38a2d6b9e9f7897045cdbdf0573e/68747470733a2f2f706f7365722e707567782e6f72672f6178702d6465762f6472696262626c652d6170692f6c6963656e7365)](https://packagist.org/packages/axp-dev/dribbble-api)

Simple php library for [dribbble api](https://dribbble.com)

Contents
--------

[](#contents)

1. [Start](#start)
    - [Composer](#composer)
    - [Initialization](#initialization)
2. [Usage](#usage)
    - Buckets
        - [Get a bucket](#get-a-bucket)
        - [List shots for a bucket](#list-shots-for-a-bucket)
    - Projects
        - [Get a project](#get-a-project)
        - [List shots for a project](#list-shots-for-a-project)
    - Shots
        - [Get a shot](#get-a-shot)
        - [List shots](#list-shots)
        - [List attachments for a shot](#list-attachments-for-a-shot)
        - [List buckets for a shot](#list-buckets-for-a-shot)
        - [List comments for a shot](#list-comments-for-a-shot)
        - [List the likes for a shot](#list-the-likes-for-a-shot)
        - [List projects for a shot](#list-projects-for-a-shot)
        - [List rebounds for a shot](#list-rebounds-for-a-shot)
    - Teams
        - [List a teams members](#list-a-teams-members)
        - [List shots for a team](#list-shots-for-a-team)
    - Users
        - [Get a single user](#get-a-single-user)
        - [List a users buckets](#list-a-users-buckets)
        - [List followers of a user](#list-followers-of-a-user)
        - [List users followed by a user](#list-users-followed-by-a-user)
        - [List shot likes for a user](#list-shot-likes-for-a-user)
        - [List a users projects](#list-a-users-projects)
        - [List shots for a user](#list-shots-for-a-user)
        - [List a users teams](#list-a-users-teams)
    - Jobs
        - [Show a job](#show-a-job)
3. [Author](#author)
4. [License](#license)

Start
-----

[](#start)

### Composer

[](#composer)

```
$ composer require axp-dev/dribbble-api

```

### Initialization

[](#initialization)

```
$token  = '...';
$client = new DribbbleApi($token);
```

Usage
-----

[](#usage)

### Get a bucket

[](#get-a-bucket)

```
public function getBuckets($id) : array
```

### List shots for a bucket

[](#list-shots-for-a-bucket)

```
public function getBucketsShots($id) : array
```

### Get a project

[](#get-a-project)

```
public function getProjects($id) : array
```

### List shots for a project

[](#list-shots-for-a-project)

```
public function getProjectsShots($id) : array
```

### Get a shot

[](#get-a-shot)

```
public function getShot($id) : array
```

### List shots

[](#list-shots)

```
public function getShots($params = []) : array
```

### List attachments for a shot

[](#list-attachments-for-a-shot)

```
public function getShotsAttachments($id) : array
```

### List buckets for a shot

[](#list-buckets-for-a-shot)

```
public function getShotsBuckets($id) : array
```

### List comments for a shot

[](#list-comments-for-a-shot)

```
public function getShotsComments($id) : array
```

### List the likes for a shot

[](#list-the-likes-for-a-shot)

```
public function getShotsLikes($id) : array
```

### List projects for a shot

[](#list-projects-for-a-shot)

```
public function getShotsProjects($id) : array
```

### List rebounds for a shot

[](#list-rebounds-for-a-shot)

```
public function getShotsRebounds($id) : array
```

### List a teams members

[](#list-a-teams-members)

```
public function getTeamsMembers($id) : array
```

### List shots for a team

[](#list-shots-for-a-team)

```
public function getTeamsShots($id) : array
```

### Get a single user

[](#get-a-single-user)

```
public function getUsers($id) : array
```

### List a users buckets

[](#list-a-users-buckets)

```
public function getUsersBuckets($id) : array
```

### List followers of a user

[](#list-followers-of-a-user)

```
public function getUsersFollowers($id) : array
```

### List users followed by a user

[](#list-users-followed-by-a-user)

```
public function getUsersFollowing($id) : array
```

### List shot likes for a user

[](#list-shot-likes-for-a-user)

```
public function getUsersLikes($id) : array
```

### List a users projects

[](#list-a-users-projects)

```
public function getUsersProjects($id) : array
```

### List shots for a user

[](#list-shots-for-a-user)

```
public function getUsersShots($id) : array
```

### List a users teams

[](#list-a-users-teams)

```
public function getUsersTeams($id) : array
```

### Show a job

[](#show-a-job)

```
public function getJobs($id) : array
```

Author
------

[](#author)

[Alexander Pushkarev](https://github.com/axp-dev), e-mail:

License
-------

[](#license)

Open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT)

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity61

Established project with proven stability

 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 ~1 days

Total

2

Last Release

3197d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/9544696857999f7e99ac8bd88ca4e695387f288057feea75c6e5e932570af349?d=identicon)[AXP](/maintainers/AXP)

---

Top Contributors

[![axp-dev](https://avatars.githubusercontent.com/u/24683246?v=4)](https://github.com/axp-dev "axp-dev (19 commits)")

---

Tags

apidribbbleapilibrarydribbble

### Embed Badge

![Health badge](/badges/axp-dev-dribbble-api/health.svg)

```
[![Health](https://phpackages.com/badges/axp-dev-dribbble-api/health.svg)](https://phpackages.com/packages/axp-dev-dribbble-api)
```

###  Alternatives

[checkout/checkout-sdk-php

Checkout.com SDK for PHP

553.3M7](/packages/checkout-checkout-sdk-php)[chatapi/whatsapp

Library for WhatsApp api

453.6k](/packages/chatapi-whatsapp)[danielstieber/coda-php

CodaPHP is a library that makes it easy to use Coda API in web projects.

306.4k2](/packages/danielstieber-coda-php)

PHPackages © 2026

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