Performers / Index

NamePerformers / Index
DescriptionObtain a list of Performers that match given conditions.
TypeGET
URL/v9/performers
Credential TypeAPI|User
Supports PaginationYes

Long Description

Obtain a list of Performers that match given conditions.

Parameters

Name
Description
Type
Presence
LocationConditionals
venue_idID of the Performer’s home venue (most performers do not have one)IntegerOptionalQueryNo
category_idShow only Performers in this category (does not include sub-categories)IntegerOptionalQueryNo
category_treeWhen true and used in conjunction with category_id performers in sub-categories of the category_id will be includedBooleanOptionalQueryNo
only_with_upcoming_eventsFilter to only Performers who have upcoming eventsBooleanOptionalQueryNo
upcoming_events_end_dateFilter to only Performers who have upcoming events earlier than the date ("only_with_upcoming_events" must be true)Date (ISO_8601)OptionalQueryNo
first_letterFilter to Performers whose names begin with this letterStringOptionalQueryNo
popularity_scoreFilter to Performers whose popularity score meets the provided conditionalsDecimalOptionalQueryYes
disabled_atFilter to Performers disabled before or after a certain dateDate (ISO_8601)OptionalQueryYes
deleted_atFilter performers deleted before or after a certain dateDate (ISO_8601)OptionalQueryYes
updated_atFilter performers updated before or after a certain dateDate (ISO_8601)OptionalQueryYes
nameExact name of the Performer. Use Performers / Search when searching for a Performer by name.StringOptionalQueryNo
order_byPass in the parameter that you want to order by and the sorting order (Ex. :order_by => "performers.popularity_score DESC")StringOptionalQueryNo

 

Examples

RequestResponse
/v9/performers?name=Pawtucket%20Red%20Sox 

 

 

{
   "performers":[
      {
         "keywords":"",
         "updated_at":"2012-09-03 09:38:19.352303",
         "upcoming_events":{
            "last":"2013-09-02 13:35:00",
            "first":"2013-07-12 00:00:00"
         },
         "venue":{
            "updated_at":null,
            "address":{
               "region":"RI",
               "locality":"Pawtucket",
               "postal_code":"02860",
               "created_at":"2012-04-12 03:35:48.437141",
               "street_address":"One Columbus Avenue",
               "country_code":"US",
               "extended_address":null
            },
            "url":"/venue/",
            "name":null,
            "id":null
         },
         "popularity_score":"0.275320",
         "category":{
            "name":"Minor League",
            "url":"/categories/4",
            "id":"4",
            "parent":{
               "name":"Baseball",
               "url":"/categories/2",
               "id":"2",
               "parent":{
                  "name":"Sports",
                  "url":"/categories/1",
                  "id":"1",
                  "parent":null
               }
            }
         },
         "url":"/performers/14316",
         "name":"Pawtucket Red Sox",
         "id":14316
      }
   ],
   "current_page":1,
   "per_page":100,
   "total_entries":1
}