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

ActiveLibrary[API Development](/categories/api)

community-sdks/godaddy-php
==========================

PHP SDK for the GoDaddy APIs in this repository.

v1.0.2(2mo ago)081MITPHPPHP ^8.2

Since Feb 27Pushed 2mo agoCompare

[ Source](https://github.com/community-sdks/godaddy-php)[ Packagist](https://packagist.org/packages/community-sdks/godaddy-php)[ RSS](/packages/community-sdks-godaddy-php/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (3)Dependencies (4)Versions (4)Used By (1)

Unofficial GoDaddy PHP SDK
==========================

[](#unofficial-godaddy-php-sdk)

Getting Started
---------------

[](#getting-started)

```
composer require community-sdks/godaddy-php
```

```
use CommunitySDKs\GoDaddy\Client;
use CommunitySDKs\GoDaddy\Config;

$client = new Client(new Config(
    apiKey: 'your-key',
    apiSecret: 'your-secret',
));
```

Environment Base URLs
---------------------

[](#environment-base-urls)

Base URLs are configured only through `Config`.

- Sandbox (OTE): `https://api.ote-godaddy.com`
- Production: `https://api.godaddy.com`

`new Config(...)` defaults to sandbox (OTE): `https://api.ote-godaddy.com`.

Use production for all services:

```
$client = new Client(Config::production(
    apiKey: 'your-key',
    apiSecret: 'your-secret'
));
```

Use sandbox explicitly:

```
$client = new Client(Config::sandbox(
    apiKey: 'your-key',
    apiSecret: 'your-secret'
));
```

Override base URL for specific services (keys: `abuse`, `aftermarket`, `agreements`, `ans`, `auctions`, `certificates`, `countries`, `domains`, `orders`, `parking`, `shoppers`, `subscriptions`):

```
$client = new Client(new Config(
    apiKey: 'your-key',
    apiSecret: 'your-secret',
    baseUrl: Config::PRODUCTION_BASE_URL,
    serviceBaseUrls: [
        'abuse' => 'https://api.ote-godaddy.com',
    ]
));
```

Services
--------

[](#services)

- [Abuse](docs/abuse.md): Abuse ticket management endpoints for listing, creating, and retrieving abuse reports.
- [Aftermarket](docs/aftermarket.md): Aftermarket listing endpoints for auction listings, expiry listings, and listing removals.
- [Agreements](docs/agreements.md): Legal agreement lookup endpoints for required agreement keys.
- [Ans](docs/ans.md): Agent Name Service endpoints for agent registration, resolution, certificates, and events.
- [Auctions](docs/auctions.md): Auction bidding endpoints for placing bids on aftermarket listings.
- [Certificates](docs/certificates.md): Certificate lifecycle endpoints for ordering, validation, download, reissue, renewal, revocation, and subscription lookups.
- [Countries](docs/countries.md): Country and market metadata endpoints for country and state lookups.
- [Domains](docs/domains.md): Domain management endpoints for availability, purchase, DNS, transfers, forwarding, notifications, and maintenance data.
- [Orders](docs/orders.md): Order retrieval endpoints for listing orders and loading individual order details.
- [Parking](docs/parking.md): Parking analytics endpoints for aggregate and per-domain parking metrics.
- [Shoppers](docs/shoppers.md): Shopper account endpoints for subaccounts, profile updates, deletion, status, and password changes.
- [Subscriptions](docs/subscriptions.md): Subscription endpoints for listing, product groups, retrieval, cancellation, and updates.

###  Health Score

39

—

LowBetter than 86% of packages

Maintenance86

Actively maintained with recent releases

Popularity7

Limited adoption so far

Community5

Small or concentrated contributor base

Maturity48

Maturing project, gaining track record

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

Total

3

Last Release

69d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/211412089?v=4)[ZPM Labs](/maintainers/zpmlabs)[@ZPMLabs](https://github.com/ZPMLabs)

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/community-sdks-godaddy-php/health.svg)

```
[![Health](https://phpackages.com/badges/community-sdks-godaddy-php/health.svg)](https://phpackages.com/packages/community-sdks-godaddy-php)
```

###  Alternatives

[tencentcloud/tencentcloud-sdk-php

TencentCloudApi php sdk

3731.2M42](/packages/tencentcloud-tencentcloud-sdk-php)[convertkit/convertkitapi

Kit PHP SDK for the Kit API

2167.1k1](/packages/convertkit-convertkitapi)[mapado/rest-client-sdk

Rest Client SDK for hydra API

1125.9k2](/packages/mapado-rest-client-sdk)

PHPackages © 2026

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