Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ticketmaster

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ticketmaster

Node SDK for the Ticketmaster Open Platform

  • 0.3.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
9
decreased by-59.09%
Maintainers
1
Weekly downloads
 
Created
Source

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!

FAQs

Package last updated on 23 Jun 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc