Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ashwanthkumar/php5-goibibo

PHP5 Client for GoIbibo
https://github.com/ashwanthkumar/php5-goibibo

Last synced: about 7 hours ago
JSON representation

PHP5 Client for GoIbibo

Awesome Lists containing this project

README

        

# GoIbibo API (PHP5 Client)

PHP5 Client to [GoIbibo API](https://developer.goibibo.com/docs "GoIb Developer Portal").

### Usage

```
require_once("GoIbibo.php");

$api = new GoIbibo("__MY_APP_ID__","__MY_APP_KEY__");

// Get flights from Chennai to Banglore on 17th November, 2013
$api->searchFlights("MAA", "BLR", "20131117");

// Get minimum fares of flights from Banglore to Chennai
$api->getMinimumFare("BLR", "MAA", "20131116", NULL, VERTICAL_FLIGHT, MODE_ONE, CLASS_E);

```