API Results

You should get something like this


The results are currently restricted to JSON. Here is a sample JSON decoded result set from the following query: http://api.sonicliving.com/api/?artists[]=css&artists[]=apple pie hopes&zips[]=94123&key=mykey

JSON

As the JSON string:

						
      [[{"event_timestamp":1229144400,
      "event_date":"Friday, December 12th, 2008",
      "event_time":"9:00 pm",
      "event_id":"1039168",
      "links":[{"link_url":"http:\/\/sonicliving.com\/event\/1036341","link_title":"9:00 pm"}],
      "event_title":"CSS \/ Natalie Portman's Shaved Head.",
      "poster_url_large":"http:\/\/posters.sonicliving.com\/event\/1039168\/poster.png",
      "poster_url_small":"http:\/\/posters.sonicliving.com\/event\/1039168\/smallposter.png",
      "eid":"163186350387726",
      "facebook_event_url":"http:\/\/www.facebook.com\/event.php?eid=163186350387726",
      "venue_id":"4320",
      "venue_name":"Bimbo's 365 Club",
      "venue_address":"1025 Columbus Avenue",
      "venue_city":"San Francisco",
      "venue_state":"CA",
      "venue_country":"US",
      "lat":"37.8005",
      "lon":"-122.409"}]]
		

PHP Array

Shown as a json_decode()'ed PHP array:

    Array
    (
        [0] => Array
            (
                [0] => stdClass Object
                    (
                        [event_timestamp] => 1229144400
                        [event_date] => Friday, December 12th, 2008
                        [event_time] => 9:00 pm
                        [event_id] => 1039168
                        [links] => Array
                            (
                                [0] => stdClass Object
                                    (
                                        [link_url] => http://sonicliving.com/event/1036341
                                        [link_title] => 9:00 pm
                                    )

                            )

                        [event_title] => CSS / Natalie Portman's Shaved Head.
                        [poster_url_large] => http://posters.sonicliving.com/event/2585639/poster.png
                        [poster_url_small] => http://posters.sonicliving.com/event/2585639/smallposter.png
                        [eid] => 163186350387726
                        [facebook_event_url] => http://www.facebook.com/event.php?eid=163186350387726
                        [venue_id] => 4320
                        [venue_name] => Bimbo's 365 Club
                        [venue_address] => 1025 Columbus Avenue
                        [venue_city] => San Francisco
                        [venue_state] => CA
                        [venue_country] => US
                        [lat] => 37.8005
                        [lon] => -122.409
                    )

    	)

    )