PHPackages                             apideck-libraries/php-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. [HTTP &amp; Networking](/categories/http)
4. /
5. apideck-libraries/php-sdk

AbandonedArchivedLibrary[HTTP &amp; Networking](/categories/http)

apideck-libraries/php-sdk
=========================

The Apideck OpenAPI Spec: SDK Optimized

3.10.0(1y ago)7482.6k↓54.8%[1 PRs](https://github.com/apideck-libraries/php-sdk/pulls)Apache-2.0PHPPHP ^7.3 || ^8.0

Since Apr 11Pushed 1y ago1 watchersCompare

[ Source](https://github.com/apideck-libraries/php-sdk)[ Packagist](https://packagist.org/packages/apideck-libraries/php-sdk)[ Docs](https://apideck.com)[ RSS](/packages/apideck-libraries-php-sdk/feed)WikiDiscussions main Synced 3d ago

READMEChangelog (10)Dependencies (4)Versions (58)Used By (0)

Apideck PHP SDK
===============

[](#apideck-php-sdk)

> ⚠️ **DEPRECATION NOTICE**: This SDK is deprecated and will be archived on May 31, 2025. Please transition to the [new SDK](https://github.com/apideck-libraries/sdk-php) before this date. After May 31, 2025, this repository will be archived and will no longer receive any updates. To support you during this transition please refer to our [migration guide](https://developers.apideck.com/guides/sdk-migration).

Table of Contents
-----------------

[](#table-of-contents)

- [Table of Contents](#table-of-contents)
- [Installation](#installation)
- [Getting started](#getting-started)
- [Example](#example)
- [Support](#support)
- [License](#license)

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

[](#installation)

### Requirements

[](#requirements)

PHP 7.3 and later. Should also work with PHP 8.0 but has not been tested.

### Composer

[](#composer)

Install the latest SDK using composer:

```
$ composer require apideck-libraries/php-sdk
```

Getting started
---------------

[](#getting-started)

The module supports all Apideck API endpoints. For complete information about the API, head to the [docs](https://developers.apideck.com/).

### Configuration

[](#configuration)

A new Apideck instance is initialized by passing in required settings to the configuration.

```
require('vendor/autoload.php');

use Apideck\Client\Apideck;
use Apideck\Client\ApideckConfiguration;

$config = new ApideckConfiguration('', '', '');
$apideck = new Apideck($config);

```

Top level parameters (except for apiKey) can be overriden in specific resource calls.

```
