kolyasapphire/travel-payouts

PHP SDK for travelpayouts.com (thewulf7/travel-payouts fork)

v1.2.1 2020-08-17 23:05 UTC

README

Codeship Status for thewulf7/travel-payouts

Installation

Composer

composer require thewulf7/travel-payouts

or add to your composer.json file, in the "require" section

"thewulf7/travel-payouts": "1.1.*"

Usage

First of all create main Travel object and pass your token in it

use thewulf7\travelPayouts\Travel; 

$travel = new Travel('YOUR TOKEN HERE');

Then you can use it get different services

Tickets service

$ticketService = $travel->getTicketsService();
//Get flights found by our users in the last 48 hours from LED to MOW. Return array consists of thewulf7\travelPayouts\Ticket objects.
$flights = $ticketService->getLatestPrices('LED', 'MOW', false, 'rub', 'year', 1, 10);

See documentation

Flight service

$flightService = $travel->getFlightService();
$flightService
       ->setIp('127.0.0.1')
       ->setHost('aviasales.ru')
       ->setMarker('123')
       ->addPassenger('adults', 2)
       ->addSegment('LED', 'MOW', '2016-02-01');
$searchData    = $flightService->search('ru', 'Y');
$searchResults = $flightService->getSearchResults($searchData['search_id']);

Partner service

$partnerService = $travel->getPartnerService();
//get user balance and currency of the balance
list($balance, $currency) = $partnerService->getBalance();

Data service

$dataService = $travel->getDataService();
//get all airports in the system
$airports    = $dataService->getAirports();