wodby / wodby-sdk-php
PHP SDK for the Wodby 2.0 Public API
4.0.2
2026-06-19 20:13 UTC
Requires
- php: ^7.4 || ^8.0
- ext-curl: *
- ext-json: *
- ext-mbstring: *
- guzzlehttp/guzzle: ^7.3
- guzzlehttp/psr7: ^1.7 || ^2.0
This package is auto-updated.
Last update: 2026-06-23 12:27:06 UTC
README
PHP client for the Wodby 2.0 Public API.
Documentation
- API reference
- OpenAPI schema
- Generated SDK docs:
SwaggerClient-php/docs
Install
composer require wodby/wodby-sdk-php
Authentication
Wodby API requests use an API key in the X-API-KEY header.
<?php require_once __DIR__ . '/vendor/autoload.php'; $config = Wodby\Api\Configuration::getDefaultConfiguration() ->setApiKey('X-API-KEY', getenv('WODBY_API_KEY'));