PHPackages                             codefit/wolt-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. codefit/wolt-api-client

ActiveLibrary[API Development](/categories/api)

codefit/wolt-api-client
=======================

PHP client for Wolt API integration

1.0.0(1y ago)08MITPHPPHP &gt;=7.4

Since Jun 12Pushed 1y agoCompare

[ Source](https://github.com/codefit/wolt-api)[ Packagist](https://packagist.org/packages/codefit/wolt-api-client)[ RSS](/packages/codefit-wolt-api-client/feed)WikiDiscussions main Synced today

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

Wolt API Client
===============

[](#wolt-api-client)

PHP client for Wolt API integration. This package provides easy access to Wolt's Order API and Menu API.

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

[](#installation)

```
composer require codefit/wolt-api-client
```

Usage
-----

[](#usage)

### Authentication

[](#authentication)

First, you'll need to obtain your client credentials from Wolt. Then you can initialize the clients:

```
use Wolt\Api\OrderClient;
use Wolt\Api\MenuClient;

// Initialize Order client
$orderClient = new OrderClient('your-client-id', 'your-client-secret');

// Initialize Menu client
$menuClient = new MenuClient('your-client-id', 'your-client-secret');
```

### Order API Examples

[](#order-api-examples)

```
// Get order details
$order = $orderClient->getOrder('order-id');

// Mark order as ready
$orderClient->markOrderReady('order-id');

// Mark order as delivered
$orderClient->markOrderDelivered('order-id');

// Reject order
$orderClient->rejectOrder('order-id', 'Out of stock');
```

### Menu API Examples

[](#menu-api-examples)

```
// Get menu for a venue
$menu = $menuClient->getMenu('venue-id');

// Update menu
$menuClient->updateMenu('venue-id', [
    // Menu data structure
]);

// Update item availability
$menuClient->updateItemAvailability('venue-id', 'item-id', false);

// Update item price
$menuClient->updateItemPrice('venue-id', 'item-id', 9.99);
```

Error Handling
--------------

[](#error-handling)

The client throws exceptions in case of errors:

```
use Wolt\Api\Exception\AuthenticationException;
use GuzzleHttp\Exception\GuzzleException;

try {
    $order = $orderClient->getOrder('order-id');
} catch (AuthenticationException $e) {
    // Handle authentication errors
} catch (GuzzleException $e) {
    // Handle API request errors
}
```

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

[](#requirements)

- PHP 7.4 or higher
- Guzzle HTTP client
- JSON extension

License
-------

[](#license)

MIT

###  Health Score

25

—

LowBetter than 35% of packages

Maintenance48

Moderate activity, may be stable

Popularity4

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity37

Early-stage or recently created project

 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

Unknown

Total

1

Last Release

388d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/9becd2d5ca6bca18ddc82f1d7a47e4de6c278e0e495c36ddc4227bccd29c2e16?d=identicon)[David Kojecký](/maintainers/David%20Kojeck%C3%BD)

---

Top Contributors

[![codefit](https://avatars.githubusercontent.com/u/17836699?v=4)](https://github.com/codefit "codefit (2 commits)")

###  Code Quality

TestsPHPUnit

Static AnalysisPHPStan

Type Coverage Yes

### Embed Badge

![Health badge](/badges/codefit-wolt-api-client/health.svg)

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

###  Alternatives

[statamic/cms

The Statamic CMS Core Package

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

TencentCloudApi php sdk

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

The PHP Agentic Framework.

2.0k656.1k38](/packages/neuron-core-neuron-ai)[eslazarev/wildberries-sdk

Wildberries OpenAPI clients (generated).

273.0k](/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.5M7](/packages/avalara-avataxclient)[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)
