deszczynskiprzemyslaw / tibiadata-api-client
tibiadata-api-client by Przemyslaw Deszczynski
Installs: 5
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/deszczynskiprzemyslaw/tibiadata-api-client
Requires
- php: ^8.0
- ext-curl: *
Requires (Dev)
- phpunit/phpunit: 9.5
This package is auto-updated.
Last update: 2026-01-29 03:38:43 UTC
README
Tibiadata API / API ze strony Tibia.com
API Docs
https://api.tibiadata.com
https://docs.tibiadata.com/
Installation
composer require deszczynskiprzemyslaw/tibiadata-api-client
Supported Versions
| Version | PHP version | HTTP client |
|---|---|---|
| 1.x | >= 8.0 | cURL |
Methods
character(string $name): Characters creature(string $race): Creature creatures(): Creatures fansites(): Fansites guild(string $name): Guilds guilds(string $world): Guilds highscores(string $world, string $category, string $vocation): Highscores house(string $world, int $houseId): House houses(string $world, string $town): Houses killStatistics(string $world): Killstatistics newsArchive(): News newsArchiveWithDaysFilter(int $days): News newsId(int $news_id): News newsLatest(): News newsNewsticker(): News spell(string $spell_id): Spells spells(): Spells world(string $name): Worlds worlds(): Worlds
Usage
<?php require_once './vendor/autoload.php'; $client = new TibiaDataApi\TibiaDataApiClient; $response = $client->character('Goraca'); echo $response->character->name // Goraca