Skip to content
This repository has been archived by the owner on Oct 4, 2022. It is now read-only.

TomSeldon/StubHub

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

StubHub PHP API

A small PHP library for accessing the StubHub API.

For more information about the StubHub API, visit: http://stubhubapi.stubhub.com/

This project is based on the Ruby implementation by 'rloomba': https://github.com/rloomba/stubhub

Usage

require_once "./lib/stubhub.php";

// Search for an event
$events = Event::search("The Rolling Stones");

// Search for a venue
$venues = Venue::search("Arena");

// Search for a genre
$genres = Genre:search("Comedy");

// Get a single event by event id
$event  = Event::find_event_by_id(1234);

// Get ticket details for specific event
$tickets = Event::tickets(1234);

// Get ticket by ticket ID
$ticket  = Ticket::find_ticket_by_ticket_id(654321);

Contribution

This project is not under active development. If your a developer and found this useful, please consider contributing to and improving this project.

About

A simple PHP library for accessing the StubHub API.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages