PHPackages                             craymend/tokeet-sdk - 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. craymend/tokeet-sdk

ActiveLibrary[API Development](/categories/api)

craymend/tokeet-sdk
===================

Php SDK for Tokeet Client API

1.1.0(1y ago)0257MITPHP

Since Apr 22Pushed 1y ago1 watchersCompare

[ Source](https://github.com/craymend/tokeet-caching)[ Packagist](https://packagist.org/packages/craymend/tokeet-sdk)[ RSS](/packages/craymend-tokeet-sdk/feed)WikiDiscussions master Synced 1w ago

READMEChangelogDependencies (1)Versions (3)Used By (0)

Tokeet Caching
==============

[](#tokeet-caching)

[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE)

Query Tokeet API for Rentals and Tokeet Data Feeds for additional information including current bookings.

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

[](#installation)

Via composer.

```
composer require craymend/tokeet-sdk

```

Run

```
artisan vendor:publish

```

Now in your .env file, define your Tokeet credentials:

```
TOKEET_API_KEY=
TOKEET_ACCOUNT=
TOKEET_INQUIRY_DATA_FEED_BASE_URL=
```

Rental API Usage Example
------------------------

[](#rental-api-usage-example)

```
use Craymend\TokeetSdk\Api\Rentals;

$queryObj = new Rentals();
$response = $queryObj->getRentals();
if($response->status === 'success'){
    $rentals = $response->data;

    foreach($rentals as $rental){
        echo "$rental->name \n";
    }
}
```

Data Feed Booking Example
-------------------------

[](#data-feed-booking-example)

```
use Craymend\TokeetSdk\DataFeed\Inquiries;

$queryObj = new Inquiries();
$response = $queryObj->getRentalBookings($rental->pkey, $startDate);

 if($response->status === 'success'){
    $bookingsCsvArray = $response->data;

    for($i = 0; $i < count($bookingsCsvArray); $i++){
        if($i == 0){
            continue; // ignore name row
        }

        $row = $bookingsCsvArray[$i];
        $bookingId = $row[8];
        $name = $row[0];

        echo "$bookingId - $name \n";
    }
 }
```

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE) for more information.

###  Health Score

33

—

LowBetter than 72% of packages

Maintenance46

Moderate activity, may be stable

Popularity15

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity54

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

Total

2

Last Release

418d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/cc58193b4288f8668a6051d84c2051ea1354e59445fbaa54e34c013889bdec8a?d=identicon)[craymend](/maintainers/craymend)

---

Top Contributors

[![Damienrow](https://avatars.githubusercontent.com/u/6664611?v=4)](https://github.com/Damienrow "Damienrow (1 commits)")

### Embed Badge

![Health badge](/badges/craymend-tokeet-sdk/health.svg)

```
[![Health](https://phpackages.com/badges/craymend-tokeet-sdk/health.svg)](https://phpackages.com/packages/craymend-tokeet-sdk)
```

###  Alternatives

[tencentcloud/tencentcloud-sdk-php

TencentCloudApi php sdk

3661.3M49](/packages/tencentcloud-tencentcloud-sdk-php)[neuron-core/neuron-ai

The PHP Agentic Framework.

2.0k832.6k52](/packages/neuron-core-neuron-ai)[eslazarev/wildberries-sdk

Wildberries OpenAPI clients (generated).

293.1k](/packages/eslazarev-wildberries-sdk)[avalara/avataxclient

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

528.7M7](/packages/avalara-avataxclient)[files.com/files-php-sdk

Files.com PHP SDK

2482.9k](/packages/filescom-files-php-sdk)[aimeos/prisma

A powerful PHP package for integrating media related Large Language Models (LLMs) into your applications

2084.7k6](/packages/aimeos-prisma)

PHPackages © 2026

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