PHPackages                             starcitizenwiki/apiunto - 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. starcitizenwiki/apiunto

AbandonedArchivedMediawiki-extension[API Development](/categories/api)

starcitizenwiki/apiunto
=======================

Lua Extension for MediaWiki to access the Star Citizen Wiki API.

2.0.0(2y ago)0891MITPHPPHP &gt;=8.0

Since Aug 18Pushed 2y ago1 watchersCompare

[ Source](https://github.com/StarCitizenWiki/Apiunto)[ Packagist](https://packagist.org/packages/starcitizenwiki/apiunto)[ RSS](/packages/starcitizenwiki-apiunto/feed)WikiDiscussions master Synced today

READMEChangelogDependencies (6)Versions (8)Used By (0)

Apiunto
=======

[](#apiunto)

Lua Extension for MediaWiki to access the Star Citizen Wiki API

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

[](#installation)

```
wfLoadExtension( 'Apiunto' );

$wgApiuntoKey = ''; // Key from api.star-citizen.wiki
$wgApiuntoUrl = 'https://api.star-citizen.wiki'; // Or self-host https://github.com/StarCitizenWiki/API
$wgApiuntoTimeout = '5'; // 5 seconds
$wgApiuntoDefaultLocale = 'de_DE'; // Or en_EN
```

Lua Usage
---------

[](#lua-usage)

```
local api = mw.ext.Apiunto

-- Request the ship data for the 300i with german locale
-- Docs: https://docs.star-citizen.wiki/star_citizen_api.html#raumschiffe
-- Output: https://api.star-citizen.wiki/api/v2/vehicles/300i?locale=de_DE
local ship_300i = api.get_raw( 'v2/vehicles/300i', {
    locale = 'de_DE',
} )
local json = mw.text.jsonDecode( ship_300i )

-- Request data for the 300i with both german and english locale
local ship_300i = api.get_raw( 'v2/vehicles/300i' )

-- Request data for the 300i with english locale and included components
local ship_300i = api.get_raw( 'v2/vehicles/300i', {
    locale = 'en_EN',
    include = { 'components' }
} )

-- Request data for the Greycat Industrial ROC
-- Docs: https://docs.star-citizen.wiki/v2
-- Output: https://api.star-citizen.wiki/api/v2/vehicles/ROC
local roc = api.get_raw( 'v2/vehicles/ROC' )

-- RSI Manufacturer data
-- Docs: https://docs.star-citizen.wiki/v2
-- Output: https://api.star-citizen.wiki/api/v2/manufacturers/RSI
local rsi = api.get_manufacturer( 'RSI' )

-- RSI Manufacturer data with vehicles
-- Docs: https://docs.star-citizen.wiki/v2
-- Output: https://api.star-citizen.wiki/api/v2/manufacturers/RSI
local rsi = api.get_manufacturer( 'RSI', {
    include = 'vehicles'
} )

-- Comm-Link Metadata
-- Docs: https://docs.star-citizen.wiki/v2
-- Output: https://api.star-citizen.wiki/api/v2/comm-links/12667
local commLink = api.get_comm_link_metadata( 12667 )

-- Comm-Link Metadata including images and image hashes
-- Docs: https://docs.star-citizen.wiki/star_citizen_api.html#comm-links
-- Output: https://api.star-citizen.wiki/api/v2/comm-links/12667
local commLink = api.get_comm_link_metadata( 12667, {
    include = {
        'images',
        'images.hashes',
    }
} )

-- Star System Data
-- Includable: "jumppoint_entries", "jumppoint_exits", "celestial_objects"
-- Output: https://api.star-citizen.wiki/api/v2/starsystems/sol
local sol = api.get_starsystem( 'sol' ) -- Or: 'SOL' / 355 (id)

-- Celestial object data
-- Output: https://api.star-citizen.wiki/api/v2/celestial-objects/SOL.JUMPPOINTS.CROSHAW
local jumppoint = api.get_celestial_object( 'SOL.JUMPPOINTS.CROSHAW', {
    include = { }
} )

-- Output: https://api.star-citizen.wiki/api/v2/celestial-objects/2702
-- YULIN.STATION.YULINFLOTILLA
local objectById = api.get_celestial_object( 2702, {
    include = { }
} )
```

###  Health Score

32

—

LowBetter than 69% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity14

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity72

Established project with proven stability

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

Recently: every ~264 days

Total

6

Last Release

1080d ago

Major Versions

1.3.0 → 2.0.02023-07-19

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

1.3.0PHP &gt;=8.0

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/6594492?v=4)[H. C. Kruse](/maintainers/Octfx)[@octfx](https://github.com/octfx)

---

Top Contributors

[![octfx](https://avatars.githubusercontent.com/u/6594492?v=4)](https://github.com/octfx "octfx (58 commits)")

---

Tags

lualua-extensionmediawiki

### Embed Badge

![Health badge](/badges/starcitizenwiki-apiunto/health.svg)

```
[![Health](https://phpackages.com/badges/starcitizenwiki-apiunto/health.svg)](https://phpackages.com/packages/starcitizenwiki-apiunto)
```

###  Alternatives

[statamic/cms

The Statamic CMS Core Package

4.8k3.6M986](/packages/statamic-cms)[tencentcloud/tencentcloud-sdk-php

TencentCloudApi php sdk

3741.3M47](/packages/tencentcloud-tencentcloud-sdk-php)[neuron-core/neuron-ai

The PHP Agentic Framework.

2.0k656.1k38](/packages/neuron-core-neuron-ai)[avalara/avataxclient

Client library for Avalara's AvaTax suite of business tax calculation and processing services. Uses the REST v2 API.

528.5M7](/packages/avalara-avataxclient)[eslazarev/wildberries-sdk

Wildberries OpenAPI clients (generated).

273.0k](/packages/eslazarev-wildberries-sdk)[files.com/files-php-sdk

Files.com PHP SDK

2481.1k](/packages/filescom-files-php-sdk)

PHPackages © 2026

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