Skip to content
 
 

Latest commit

 

History

35 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ticketmaster Build Status

Node SDK for the Ticketmaster Open Platform (http://developer.ticketmaster.com/).

Aims to wrap the Ticketmaster API with coverage for all Open Platform endpoints, featuring:

  • API key authentication support
  • Ticketmaster OAuth2 access key support
  • Promises on all requests via Bluebird

System Requirements

  • NodeJS (v0.10 or greater)

Usage

  1. Include the ticketmaster npm package:
  • npm install --save ticketmaster
  1. Require the package and make an API call:
var TM = require('ticketmaster');
TM('your-api-key').discovery.v2.event.all()
.then(function(events) {
  // "events" is an array of Ticketmaster event information
  console.log(events);
});

Alternative syntax if you are only interested in a subset of the API:

var EventAPI = require('ticketmaster').discovery.v2.event;
EventAPI('your-api-key').all()

Running Tests

  • make test

Status

Currently supports the following endpoints:

  • Discovery API
    • v1
      • Attraction
        • Find
      • Category
        • Find
      • Event
        • All
        • Find
      • Venue
        • Find
    • v2
      • Attraction
        • Find
      • Event
        • All
        • Find
      • Venue
        • Find

The goal is to implement all endpoints available @ http://developer.ticketmaster.com/. Pull Requests gladly accepted!

Contact Us

[internal only] Find us in #open-platform on Ticketmaster Slack!

About

No description, website, or topics provided.

Resources

Stars

14 stars

Watchers

5 watching

Forks

Releases

Packages

Used by

Contributors

Languages