PHPackages                             kyleblanker/omdb-php - 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. [Image &amp; Media](/categories/media)
4. /
5. kyleblanker/omdb-php

ActiveLibrary[Image &amp; Media](/categories/media)

kyleblanker/omdb-php
====================

Open movie database api wrapper

1.0.1(4y ago)05MITPHP

Since Oct 2Pushed 4y ago1 watchersCompare

[ Source](https://github.com/kyleblanker/omdb-php)[ Packagist](https://packagist.org/packages/kyleblanker/omdb-php)[ RSS](/packages/kyleblanker-omdb-php/feed)WikiDiscussions master Synced 3w ago

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

OMDb API SDK
============

[](#omdb-api-sdk)

A simple SDK for the Open movie database api.

[Click here](http://www.omdbapi.com) to read the omdb api documentation

Examples
--------

[](#examples)

### Creating the client

[](#creating-the-client)

```
$client = new \KyleBlanker\Omdb\Client('');
```

### Methods

[](#methods)

A list of methods and their return type

- year: self
- search: self
- type: self
- fullPlot: self
- page: self
- get: \\KyleBlanker\\Omdb\\Response
- getByImdbID: \\KyleBlanker\\Omdb\\Response
- getPoster: array\[content,mime\]|null

### Examples

[](#examples-1)

```
$client = new \KyleBlanker\Omdb\Client('');
$response = $client->year(1988)->search('The Land Before Time')->get();
var_dump($response->results());
```

```
array (size=1)
  0 =>
    object(stdClass)[55]
      public 'Title' => string 'The Land Before Time' (length=20)
      public 'Year' => string '1988' (length=4)
      public 'imdbID' => string 'tt0095489' (length=9)
      public 'Type' => string 'movie' (length=5)
      public 'Poster' => string 'https://m.media-amazon.com/images/M/MV5BNDVhZjVmZWYtYTE0OC00MGFjLWI1YWQtZmJhNmE5NzI4ZWE4XkEyXkFqcGdeQXVyMzczMzE2ODM@._V1_SX300.jpg' (length=130)

```

```
$client = new \KyleBlanker\Omdb\Client('');
$response = $client->getByImdbID('tt0095489');
var_dump($response->results());
```

```
array (size=1)
  0 =>
    object(stdClass)[55]
      public 'Title' => string 'The Land Before Time' (length=20)
      public 'Year' => string '1988' (length=4)
      public 'Rated' => string 'G' (length=1)
      public 'Released' => string '18 Nov 1988' (length=11)
      public 'Runtime' => string '69 min' (length=6)
      public 'Genre' => string 'Animation, Adventure, Drama' (length=27)
      public 'Director' => string 'Don Bluth' (length=9)
      public 'Writer' => string 'Stu Krieger (screenplay), Judy Freudberg (story), Tony Geiss (story)' (length=68)
      public 'Actors' => string 'Judith Barsi, Pat Hingle, Gabriel Damon, Helen Shaver' (length=53)
      public 'Plot' => string 'An orphaned brontosaurus teams up with other young dinosaurs in order to reunite with their families in a valley.' (length=113)
      public 'Language' => string 'English' (length=7)
      public 'Country' => string 'USA, Ireland' (length=12)
      public 'Awards' => string '2 nominations.' (length=14)
      public 'Poster' => string 'https://m.media-amazon.com/images/M/MV5BNDVhZjVmZWYtYTE0OC00MGFjLWI1YWQtZmJhNmE5NzI4ZWE4XkEyXkFqcGdeQXVyMzczMzE2ODM@._V1_SX300.jpg' (length=130)
      public 'Ratings' =>
        array (size=3)
          0 =>
            object(stdClass)[56]
              ...
          1 =>
            object(stdClass)[57]
              ...
          2 =>
            object(stdClass)[58]
              ...
      public 'Metascore' => string '66' (length=2)
      public 'imdbRating' => string '7.4' (length=3)
      public 'imdbVotes' => string '70,194' (length=6)
      public 'imdbID' => string 'tt0095489' (length=9)
      public 'Type' => string 'movie' (length=5)
      public 'DVD' => string '30 Apr 1997' (length=11)
      public 'BoxOffice' => string 'N/A' (length=3)
      public 'Production' => string 'MCA Universal Home Video' (length=24)
      public 'Website' => string 'N/A' (length=3)
      public 'Response' => string 'True' (length=4)

```

###  Health Score

26

—

LowBetter than 41% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity63

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

Total

2

Last Release

1460d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/53d3790833f8effcfb908a13e417523d148bcc13cf5b083c5b3f6a55e9a9dbb1?d=identicon)[kyleblanker](/maintainers/kyleblanker)

---

Top Contributors

[![kyleblanker](https://avatars.githubusercontent.com/u/9121988?v=4)](https://github.com/kyleblanker "kyleblanker (2 commits)")

---

Tags

mediamovieomdb

### Embed Badge

![Health badge](/badges/kyleblanker-omdb-php/health.svg)

```
[![Health](https://phpackages.com/badges/kyleblanker-omdb-php/health.svg)](https://phpackages.com/packages/kyleblanker-omdb-php)
```

###  Alternatives

[aws/aws-sdk-php

AWS SDK for PHP - Use Amazon Web Services in your PHP project

6.3k543.5M2.6k](/packages/aws-aws-sdk-php)[neuron-core/neuron-ai

The PHP Agentic Framework.

2.0k656.1k38](/packages/neuron-core-neuron-ai)[tencentcloud/tencentcloud-sdk-php

TencentCloudApi php sdk

3741.3M46](/packages/tencentcloud-tencentcloud-sdk-php)[tempest/framework

The PHP framework that gets out of your way.

2.2k34.4k15](/packages/tempest-framework)[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)
