REGISTRATI PASSWORD DIMENTICATA? MEMORIZZA I DATI
Non sei registrato? Iscriviti!

API Documentation



Conditions of Use

You are permitted to use the attikmusic.com data solely for non-commercial purposes and for no other purpose and subject always to any limitations or conditions as
advised to you by attikmusic.com at any time.
If the primary purpose of your application is to derive revenue,  it is considered commercial. If you would like to use the attikmusic.com API for commercial purposes,
please contact us.

 

Get Api Key

Your website:

http://

Your email

 
*We will send to your email the api key





Concerts API

Concerts Api allow you to get  Italy Concerts by artists, location and date.
The AttikMusic.com data supports a RESTful interface.
This means you interact with the API by sending HTTP GET and POST requests and you get XML documents back.
When you send a request, you'll get a response that looks like this:

<resp stat="ok" version="1.0">
[Data in XML format - see below]   
</resp>

If you supplied a valid API Key the "resp" section will contain a "stat=ok".
If there was an error, the service will respond with an HTTP error code (usually 400), and an error message about the problem.

<resp stat="ko"> 
< message>Error message </message> 
</resp>  



Accessing the API


As of now all API methods are read-only so you can access the API with HTTP GET requests and your API Key.


Example GET request:


http://www.attikmusic.com/api/concerts/artist/?artist=Vasco+Rossi&Api_Key=<API_KEY>

Clients must supply an API Key with each request. Methods


Get Concerts by Artist
Example request:

Search by artist name
http://www.attikmusic.com/api/concerts/artist/?artist=Vasco+Rossi&Api_Key=<API_KEY>

Search by artist id
http://www.attikmusic.com/api/concerts/artist/?artistid=Vasco+Rossi&Api_Key=<API_KEY>

 

Get Concerts by Location Example request:

Search by location name
http://www.attikmusic.com/api/concerts/location/?location=arena+di+verona&Api_Key=<API_KEY>

Search by location id
http://www.attikmusic.com/api/concerts/location/?locationid=arena+di+verona&Api_Key=<API_KEY>

 

Example response:

 

<resp stat="ok" version="1.0" requests="1">
<artist id="5821">
<images>
<image uri="http://www.attikmusic.com/img/artisti/A-130185-1119525065.gif" />
</images>
<name>VASCO ROSSI</name>
<uriweb>http://www.attikmusic.com/VASCO_ROSSI</uriweb>
<concerts>
<concert id="21268">
<location id="2595"> - <![CDATA[ Futurshow Station ]]> </location>
<when>2010/9/28"></when>
<city><![CDATA[ Casalecchio di Reno ]]></city>
<address><![CDATA[ ]]></address>
<prov> <![CDATA[ Bologna ]]></prov>
<note> <![CDATA[ ]]> </note>
</concert>
<concert id="21267">
<location id="2595"> <![CDATA[ Futurshow Station ]]> /location>
<when>2010/9/27"></when>
<city> <![CDATA[ Casalecchio di Reno ]]></city>
<address> <![CDATA[ ]]></address>
<prov> <![CDATA[ Bologna ]]></prov>
<note> <![CDATA[ ]]></note>
</concert>
</concerts>
</artist>
</resp>


Get Concerts by date


Example request:

Search by singol day
http://www.attikmusic.com/api/concerts/date/?datefrom=01/05/2010&dateto=01/05/2010&Api_Key=<API_KEY>

Search by month date
http://www.attikmusic.com/api/concerts/date/?datefrom=01/05/2010&dateto=31/05/2010&Api_Key=<API_KEY>

Limitation: You can get only 100 records result.


Example response:


<resp stat="ok" version="1.0" requests="1">
<artist id="5453">
<images>
<image uri="http://www.attikmusic.com/img/artisti/AMW7176.jpg"/>
</images>
<name><![CDATA[Nessunpericolopervoi]]></name>
<uriweb>http://www.attikmusic.com/Nessunpericolopervoi</uriweb>
<concerts>
<concert id="21035">
<location id="2498"><![CDATA[PRALORMO (TO)]]></location>
<when>2010/6/1</when>
<city><![CDATA[Pralormo]]></city>
<address><![CDATA[Piazza Risorgimento]]></address>
<prov><![CDATA[Torino]]></prov>
<note><![CDATA[]]></note>
</concert>
</concerts>
</artist>
<artist id="12065">
<images>
<image uri="http://www.attikmusic.com/img/artisti/A-1274456-1226283692.jpeg"/>
</images>
<name><![CDATA[Giusy Ferreri]]></name>
<uriweb>http://www.attikmusic.com/Giusy_Ferreri</uriweb>
<concerts>
<concert id="21083">
<location id="2535"><![CDATA[Palabaldinelli]]></location>
<when>2010/5/31</when>
<city><![CDATA[Osimo]]></city>
<address><![CDATA[]]></address>
<prov><![CDATA[Ancona]]></prov>
<note><![CDATA[]]></note>
</concert>
</concerts>
</artist>
<artist id="2243">
<images>
<image uri="http://www.attikmusic.com/img/artisti/AMB_2243.jpg"/>
</images>
<name><![CDATA[Fabulous 50's]]></name>
<uriweb>http://www.attikmusic.com/Fabulous_50s</uriweb>
<concerts>
<concert id="20827">
<location id="0"><![CDATA[RADUNO BIKERS]]></location>
<when>2010/5/30</when>
<city><![CDATA[]]></city>
<address><![CDATA[]]></address>
<prov><![CDATA[]]></prov>
<note><![CDATA[]]></note>
</concert>
</concerts>
</artist>
<artist id="18806">
<images>
<image uri="http://www.attikmusic.com/img/artisti/A-38928-1152017940.jpeg"/>
</images>
<name><![CDATA[Gossip]]></name>
<uriweb>http://www.attikmusic.com/Gossip</uriweb>
<concerts>
<concert id="20997">
<location id="1605"><![CDATA[ESTRAGON]]></location>
<when>2010/5/30</when>
<city><![CDATA[Bologna]]></city>
<address><![CDATA[Via Calzoni, 6/H]]></address>
<prov><![CDATA[Bologna]]></prov>
<note><![CDATA[]]></note>
</concert>
</concerts>
</artist>
</resp>

 

About Images

When an Artist / Location has images, there will be an "images" section in the API response. This contains a set of "image" tags, each with the url to download the image


Cerca Artista

A-Z:

13770 Schede Artisti presenti
12422 Contenuti inseriti
882 collegati adesso!
Prima volta su AttikMusic?

Cerca Musica








  • Mainstreet
  • Genere:
    Provenienza:
  • Menarka (Alternative Metal)
  • Genere:
    Provenienza:
  • Grazie Mario
  • Genere:
    Provenienza: