Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/ashwanthkumar/php5-goibibo
- Owner: ashwanthkumar
- Created: 2013-11-14T14:12:45.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2013-11-16T16:36:03.000Z (almost 11 years ago)
- Last Synced: 2024-04-14T09:19:02.222Z (7 months 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);```