PHPackages                             justim/neostrada-api-client - 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. justim/neostrada-api-client

ActiveLibrary[API Development](/categories/api)

justim/neostrada-api-client
===========================

API client for DNS/hosting provider Neostrada

0.1.0(11y ago)025PHPPHP &gt;=5.4.0

Since Jan 30Pushed 10y ago1 watchersCompare

[ Source](https://github.com/justim/neostrada-api-client)[ Packagist](https://packagist.org/packages/justim/neostrada-api-client)[ Docs](https://github.com/justim/neostrada-api-client)[ RSS](/packages/justim-neostrada-api-client/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (3)DependenciesVersions (3)Used By (0)

Nestrada API client
===================

[](#nestrada-api-client)

> API client for DNS/hosting provider Neostrada

Requirements
------------

[](#requirements)

- `PHP >= 5.4`

Installation
------------

[](#installation)

- Add `justim/neostrada-api-client` to your `composer.json`
- `composer install justim/neostrada-api-client`

Usage
-----

[](#usage)

```
$neostrada = new Neostrada($apiKey, $secret);

$domain = $neostrada->domain('example.com');

// set A-record for www to 127.0.0.1
$domain->a('www', '127.0.0.1');

// you can do the same for CNAME-records
$domain->cname('autodiscover', 'autodiscover.outlook.com');

// alternatively you can get an instance of a record and make your changes there
$a = $domain->a('www');
$a->content = '10.0.0.2';
$a->ttl = 1800;

// making changes to current records doesn't automatically save changes
$domain->save();

$mxRecords = $domain->mx(); // lists all MX-records

foreach ($mxRecords as $mx)
{
	// change the content of the record
	$mx->content = 'mail.google.com';

	// mark the records as deleted
	$mx->setDeleted();
}

$mxRecords->save();

// adding records can be done by a new record and adding it
$a = $domain->create('a');
$a->name = 'mail';
$a->content = '127.0.0.1';
$domain->add($a); // adding a record saves it immediately

// fetching the auth code
$authCode = $domain->authCode();
```

List of possible API calls
--------------------------

[](#list-of-possible-api-calls)

- getnameserver
- getdns
- dns
- adddns
- gettoken
- extensions
- whois
- holder
- deleteholder
- getholders
- register
- nameserver

###  Health Score

23

—

LowBetter than 27% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity49

Maturing project, gaining track record

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

Total

2

Last Release

4082d ago

### Community

Maintainers

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

---

Top Contributors

[![justim](https://avatars.githubusercontent.com/u/757292?v=4)](https://github.com/justim "justim (8 commits)")

---

Tags

dnsneostradaphp

### Embed Badge

![Health badge](/badges/justim-neostrada-api-client/health.svg)

```
[![Health](https://phpackages.com/badges/justim-neostrada-api-client/health.svg)](https://phpackages.com/packages/justim-neostrada-api-client)
```

###  Alternatives

[stripe/stripe-php

Stripe PHP Library

4.0k143.3M475](/packages/stripe-stripe-php)[twilio/sdk

A PHP wrapper for Twilio's API

1.6k92.9M270](/packages/twilio-sdk)[knplabs/github-api

GitHub API v3 client

2.2k15.8M186](/packages/knplabs-github-api)[facebook/php-business-sdk

PHP SDK for Facebook Business

90121.9M33](/packages/facebook-php-business-sdk)[microsoft/microsoft-graph

The Microsoft Graph SDK for PHP

65723.5M95](/packages/microsoft-microsoft-graph)[meilisearch/meilisearch-php

PHP wrapper for the Meilisearch API

73813.7M114](/packages/meilisearch-meilisearch-php)

PHPackages © 2026

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