PHPackages                             weedgood/laravel-godaddy - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. weedgood/laravel-godaddy

ActivePackage[Utility &amp; Helpers](/categories/utility)

weedgood/laravel-godaddy
========================

An easy way to search for and purchase domains from GoDaddy.com

02.9kPHP

Since Jun 9Pushed 2y agoCompare

[ Source](https://github.com/weedgood/laravel-godaddy)[ Packagist](https://packagist.org/packages/weedgood/laravel-godaddy)[ RSS](/packages/weedgood-laravel-godaddy/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

[![Latest Stable Version](https://camo.githubusercontent.com/c1b6752ea5537b7fff06251cd0e75fd4f4a82abbc75841fb60743fed35d6e904/68747470733a2f2f706f7365722e707567782e6f72672f626574617065616b2f6c61726176656c2d676f64616464792f762f737461626c65)](https://packagist.org/packages/betapeak/laravel-godaddy)[![License](https://camo.githubusercontent.com/15ac713a6665dd93777f34dcdf445086617126925f7af6203b53a0a6fae24c6a/68747470733a2f2f706f7365722e707567782e6f72672f626574617065616b2f6c61726176656c2d676f64616464792f6c6963656e7365)](https://packagist.org/packages/betapeak/laravel-godaddy)[![Total Downloads](https://camo.githubusercontent.com/b757a4e6bb66da2da04675fa94d587a271158b626c24be98a931969f9c8e6b07/68747470733a2f2f706f7365722e707567782e6f72672f626574617065616b2f6c61726176656c2d676f64616464792f646f776e6c6f616473)](https://packagist.org/packages/betapeak/laravel-godaddy)

Laravel GoDaddy
===============

[](#laravel-godaddy)

#### Easy and simple GoDaddy API service for your Laravel project

[](#easy-and-simple-godaddy-api-service-for-your-laravel-project)

```
$availability = GoDaddy::available('my-dream-website.com');

if($availability->getAvailable() === true){
    GoDaddy::purchase('my-dream-website.com');
}

```

### Installation

[](#installation)

This package requires that you are using Laravel 5.3 or above.

You can install it with composer like so:

```
composer require betapeak/laravel-godaddy

```

If you are using Laravel 5.3 or 5.4, you will need to add the service provider and facade to your /config/app.php:

```
/config/app.php

    ...

    'providers' => [
        ...,
        BetaPeak\GoDaddy\GoDaddyServiceProvider::class
    ],

    'aliases' => [
        ...,
        'GoDaddy' => BetaPeak\GoDaddy\GoDaddyFacade::class
    ],
    ...

```

Finally, you need to publish the config file:

```
php artisan vendor:publish --provider="BetaPeak\GoDaddy\GoDaddyServiceProvider"

```

and you must enter your key and secret which can be generated from [GoDaddy's website](https://developer.godaddy.com/keys/). The config file is located at /config/laravel-godaddy.php.

NOTE: If you are planning to use the package to *purchase* domains in production, make sure you change your company details inside the config file as well. You need to generate production API keys from [the reseller website](https://reseller.godaddy.com/).

### Example usage

[](#example-usage)

#### Checking if a domain is available for purchase

[](#checking-if-a-domain-is-available-for-purchase)

```
    $result = GoDaddy::available('example.com');

    if($result->getAvailable() === true)
    {
        \\ Yey, ready to be bought!
    } else {
        \\ Not available
    }

```

#### Purchasing a domain

[](#purchasing-a-domain)

```
GoDaddy::purchase('example.com' );

```

#### Purchasing a domain for two years

[](#purchasing-a-domain-for-two-years)

```
GoDaddy::purchase('example.com', 2);

```

#### Purchasing a domain with automatic renewal (defaults to false)

[](#purchasing-a-domain-with-automatic-renewal-defaults-to-false)

```
GoDaddy::purchase('example.com', 1, true);

```

#### Purchasing a domain as a reseller

[](#purchasing-a-domain-as-a-reseller)

```
GoDaddy::purchase('example.com', 1, false, 'some-x-seller-id');

```

### Full docs

[](#full-docs)

A list of all available methods and models can be found [here](https://github.com/gellu/godaddy-api-client).

###  Health Score

19

—

LowBetter than 10% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity20

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity22

Early-stage or recently created project

 Bus Factor1

Top contributor holds 52.2% 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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/5ac89c3faaf616fefff65a64f215fcb58d7d5ec41b11c80e36d445fce79cd524?d=identicon)[JarvisHo](/maintainers/JarvisHo)

---

Top Contributors

[![simon80119](https://avatars.githubusercontent.com/u/19222881?v=4)](https://github.com/simon80119 "simon80119 (12 commits)")[![ymslavov](https://avatars.githubusercontent.com/u/6988950?v=4)](https://github.com/ymslavov "ymslavov (9 commits)")[![JarvisHo](https://avatars.githubusercontent.com/u/7737124?v=4)](https://github.com/JarvisHo "JarvisHo (2 commits)")

### Embed Badge

![Health badge](/badges/weedgood-laravel-godaddy/health.svg)

```
[![Health](https://phpackages.com/badges/weedgood-laravel-godaddy/health.svg)](https://phpackages.com/packages/weedgood-laravel-godaddy)
```

###  Alternatives

[crwlr/crawler

Web crawling and scraping library.

37214.8k2](/packages/crwlr-crawler)

PHPackages © 2026

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