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(11mo ago)07MITPHPPHP &gt;=7.4

Since Jun 12Pushed 11mo 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 1mo ago

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

26

—

LowBetter than 43% of packages

Maintenance51

Moderate activity, may be stable

Popularity5

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity36

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

341d 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

[tencentcloud/tencentcloud-sdk-php

TencentCloudApi php sdk

3731.2M42](/packages/tencentcloud-tencentcloud-sdk-php)[convertkit/convertkitapi

Kit PHP SDK for the Kit API

2167.1k1](/packages/convertkit-convertkitapi)[mapado/rest-client-sdk

Rest Client SDK for hydra API

1125.9k2](/packages/mapado-rest-client-sdk)

PHPackages © 2026

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