https://github.com/ashwanthkumar/php5-goibibo
PHP5 Client for GoIbibo
https://github.com/ashwanthkumar/php5-goibibo
Last synced: 8 months ago
JSON representation
PHP5 Client for GoIbibo
- Host: GitHub
- URL: https://github.com/ashwanthkumar/php5-goibibo
- Owner: ashwanthkumar
- Created: 2013-11-14T14:12:45.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2013-11-16T16:36:03.000Z (over 12 years ago)
- Last Synced: 2024-12-27T12:44:52.368Z (over 1 year ago)
- Language: PHP
- Size: 106 KB
- Stars: 2
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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);
```