PHPackages                             simon80119/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. [API Development](/categories/api)
4. /
5. simon80119/laravel-godaddy

ActivePackage[API Development](/categories/api)

simon80119/laravel-godaddy
==========================

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

1.0.2(3y ago)02482MITPHPPHP &gt;=7.0

Since Nov 7Pushed 3y ago1 watchersCompare

[ Source](https://github.com/simon80119/laravel-godaddy)[ Packagist](https://packagist.org/packages/simon80119/laravel-godaddy)[ Docs](https://github.com/betapeak/laravel-godaddy)[ RSS](/packages/simon80119-laravel-godaddy/feed)WikiDiscussions master Synced yesterday

READMEChangelog (1)Dependencies (4)Versions (7)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

29

—

LowBetter than 60% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity13

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity62

Established project with proven stability

 Bus Factor1

Top contributor holds 57.1% 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 ~413 days

Total

5

Last Release

1456d ago

Major Versions

0.1.1 → 1.0.02017-11-07

### Community

Maintainers

![](https://www.gravatar.com/avatar/72372ecc71a13998f83086ae3854aa2ec3b2644fadcc41aa476bbe3c7e88b2df?d=identicon)[simon801109](/maintainers/simon801109)

---

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)")

---

Tags

apilaravelgodaddy

###  Code Quality

TestsPHPUnit

### Embed Badge

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

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

###  Alternatives

[andreaselia/laravel-api-to-postman

Generate a Postman collection automatically from your Laravel API

1.0k586.2k3](/packages/andreaselia-laravel-api-to-postman)[mollie/laravel-mollie

Mollie API client wrapper for Laravel &amp; Mollie Connect provider for Laravel Socialite

3624.1M28](/packages/mollie-laravel-mollie)[api-ecosystem-for-laravel/dingo-api

A RESTful API package for the Laravel and Lumen frameworks.

3121.5M10](/packages/api-ecosystem-for-laravel-dingo-api)[essa/api-tool-kit

set of tools to build an api with laravel

52680.5k](/packages/essa-api-tool-kit)[smodav/mpesa

M-Pesa API implementation

16363.7k1](/packages/smodav-mpesa)[specialtactics/l5-api

Dependencies for the Laravel API Boilerplate package

3672.8k2](/packages/specialtactics-l5-api)

PHPackages © 2026

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