isocsoft/isocapi-sdk

SDK for isocapi, a platform that provides data from popular (mostly polish) sources like OLX, Otomoto, Otodom, and Vinted. The SDK offers an easy-to-use interface for retrieving information based on keywords or other criteria. It features clear and easy to read docs to help you get started quickly a

v1.0.1 2024-09-03 17:16 UTC

This package is not auto-updated.

Last update: 2025-04-29 20:24:35 UTC


README

The isocapi-sdk library provides convenient access to the isocapi API from apps written in PHP. It includes client with multiple convenient methods to obtain data you need.

Isocapi documentantion

See our page: Isocapi

Instalation

composer require isocsoft/isocapi-sdk

Requirements

  • PHP 8.3

Usage:

synchronous
use Isocapi\ApiClient;
use Isocapi\Source\Olx;

$client = new ApiClient('your-isocapi-key');

$response = $client->request(
    source: new Olx\AuctionsDetailsByKeyword([
        'keyword' => 'Nike',
        'page' => 1,
    ]);
);

return $response->toArray();

Support

If you have encountered a bug or have any ideas how to improve this library - don't be afraid to open an issue with an explanation.