PHPackages                             4leads/php-ninox-api - 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. [HTTP &amp; Networking](/categories/http)
4. /
5. 4leads/php-ninox-api

ActiveLibrary[HTTP &amp; Networking](/categories/http)

4leads/php-ninox-api
====================

HTTP REST client, simplified for PHP

v1.0.2(5y ago)02292MITPHPPHP &gt;=7.3

Since Feb 3Pushed 5y ago1 watchersCompare

[ Source](https://github.com/4leads/php-ninox-api)[ Packagist](https://packagist.org/packages/4leads/php-ninox-api)[ Docs](https://github.com/4leads/php-ninox-api)[ RSS](/packages/4leads-php-ninox-api/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (4)Used By (0)

[![MIT licensed](https://camo.githubusercontent.com/7013272bd27ece47364536a221edb554cd69683b68a46fc0ee96881174c4214c/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d626c75652e737667)](./LICENSE)

PHP Ninox REST-API Client/Wrapper
=================================

[](#php-ninox-rest-api-clientwrapper)

**This libary allows you to quickly and easily perform REST actions on the Ninox backend using PHP.**

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

[](#installation)

### Prerequisites

[](#prerequisites)

- PHP version ^7.4
- Ninox Account including API function

### Ninox API-Docs

[](#ninox-api-docs)

[Ninox-API](https://ninox.com/de/manual/ninox-api/rest-api)

### Install Package

[](#install-package)

Add Ninox-API to your `composer.json` file. If you are not using [Composer](http://getcomposer.org), we highly recommend it. It's an excellent way to manage dependencies in your PHP application.

```
composer require 4leads/php-ninox-api
```

Usage
-----

[](#usage)

### Set `team_id` and/or `database_id` static or dynamic

[](#set-team_id-andor-database_id-static-or-dynamic)

```
use Ninox\Ninox;

$client = new Ninox("API_KEY");
//either set team_id and/or databse globally
Ninox::setFixTeam("teamId");
Ninox::setFixDatabase("databseId");
$client->listTables();
//or set it on every request (overwrites global settings for this request if set)
$client->listTables("databseId2","teamId2");
//or just override database id but use global teamId
$client->listTables("databseId3");
```

### On private cloud/on-premise systems

[](#on-private-cloudon-premise-systems)

```
use Ninox\Ninox;
$client = new Ninox("API_KEY",["host" => "yourprivate.host.com"]);
//or
$client = new Ninox("API_KEY",["host" => "yourprivate.host.com/TEAMID/api/v1"]);
//or
$client = new Ninox("API_KEY",["host" => "yourprivate.host.com"], "TEAMID");
```

On private-cloud/on-premise endpoints the call `listTeams` is not available. It is advised to set the teamid on construct, which will be used as global setting.

### File Up-/Downloads

[](#file-up-downloads)

The library uses bare curl functions for file up-/downloads. This may lead to problems on bigger files. Consider script runtime and curl timeout on bigger files as well.

###  Health Score

25

—

LowBetter than 37% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity12

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity50

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

Total

3

Last Release

1924d ago

PHP version history (2 changes)v1.0.0PHP &gt;=7.4

v1.0.2PHP &gt;=7.3

### Community

Maintainers

![](https://www.gravatar.com/avatar/42037091f337a8e8db4e965b82b3f3543a97978957a6b73c631850bab8679ef4?d=identicon)[technik-4leads](/maintainers/technik-4leads)

---

Top Contributors

[![4leads](https://avatars.githubusercontent.com/u/33547867?v=4)](https://github.com/4leads "4leads (7 commits)")

---

Tags

apirestwrapper4leadsninox

### Embed Badge

![Health badge](/badges/4leads-php-ninox-api/health.svg)

```
[![Health](https://phpackages.com/badges/4leads-php-ninox-api/health.svg)](https://phpackages.com/packages/4leads-php-ninox-api)
```

PHPackages © 2026

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