concert listing API

Discussion in 'Programming' started by fsmedia, Jun 11, 2007.

  1. #1
    Does anyone know of an API that can be used to see whether or not an artist/band is having a concert within X dates (or even at all in the future)?

    Anything that lets a website integrate into concert dates and such....anyone know of *anything* related?

    Thanks!

    Jonathan
     
    fsmedia, Jun 11, 2007 IP
  2. ansi

    ansi Well-Known Member

    Messages:
    1,483
    Likes Received:
    65
    Best Answers:
    0
    Trophy Points:
    100
    #2
    i would suggest the SOAP protocol. it's basically an XML protocol that lets applications exchange data over HTTP so it's perfect for what you want. think of it as an XML feed (often used with RSS) because that is what it is.

    SOAP request:
    
    POST /InStock HTTP/1.1
    Host: [url]www.example.org[/url]
    Content-Type: application/soap+xml; charset=utf-8
    Content-Length: nnn
    
    <?xml version="1.0"?>
    <soap:Envelope
    xmlns:soap="http://www.w3.org/2001/12/soap-envelope"
    soap:encodingStyle="http://www.w3.org/2001/12/soap-encoding">
    
      <soap:Body xmlns:m="http://www.example.org/stock">
        <m:GetStockPrice>
          <m:StockName>IBM</m:StockName>
        </m:GetStockPrice>
      </soap:Body>
    
    </soap:Envelope>
    
    Code (markup):
    SOAP response:
    
    HTTP/1.1 200 OK
    Content-Type: application/soap+xml; charset=utf-8
    Content-Length: nnn
    
    <?xml version="1.0"?>
    <soap:Envelope
    xmlns:soap="http://www.w3.org/2001/12/soap-envelope"
    soap:encodingStyle="http://www.w3.org/2001/12/soap-encoding">
    
      <soap:Body xmlns:m="http://www.example.org/stock">
        <m:GetStockPriceResponse>
          <m:Price>34.5</m:Price>
        </m:GetStockPriceResponse>
      </soap:Body>
    
    </soap:Envelope>
    
    Code (markup):
    if you're interested, i got this information from http://www.w3schools.com/soap/default.asp
     
    ansi, Jun 13, 2007 IP
  3. fsmedia

    fsmedia Prominent Member

    Messages:
    5,163
    Likes Received:
    262
    Best Answers:
    0
    Trophy Points:
    390
    #3
    Ok, that's great, but where can I get the actual data from? I know how to do it already, I just don't know of a reliable source...
     
    fsmedia, Jun 13, 2007 IP
  4. ansi

    ansi Well-Known Member

    Messages:
    1,483
    Likes Received:
    65
    Best Answers:
    0
    Trophy Points:
    100
    #4
    that i can't tell you. maybe scrape ticketmaster or something i don't know.
     
    ansi, Jun 13, 2007 IP
  5. fsmedia

    fsmedia Prominent Member

    Messages:
    5,163
    Likes Received:
    262
    Best Answers:
    0
    Trophy Points:
    390
    #5
    Thanks, but that was the whole point of this thread. I'm looking for a source for the data.
     
    fsmedia, Jun 13, 2007 IP
  6. livingearth

    livingearth Well-Known Member

    Messages:
    1,469
    Likes Received:
    83
    Best Answers:
    0
    Trophy Points:
    140
    #6
    I am interested in this as well...
     
    livingearth, Jun 13, 2007 IP
  7. ansi

    ansi Well-Known Member

    Messages:
    1,483
    Likes Received:
    65
    Best Answers:
    0
    Trophy Points:
    100
    #7
    well perhaps this isn't the right forum then. i assumed that since you asked in the programming forum that you were looking for information on how to write one.
     
    ansi, Jun 13, 2007 IP
  8. fsmedia

    fsmedia Prominent Member

    Messages:
    5,163
    Likes Received:
    262
    Best Answers:
    0
    Trophy Points:
    390
    #8
    I didn't see another forum suitable for this request. I did look though.
     
    fsmedia, Jun 13, 2007 IP