API description - madcato/SearchVinyls-iOS GitHub Wiki

Welcome to the SearchVinyls-iOS wiki!

API description

URL

  • /api/mostwanted
  • /api/search

/api/mostwanted

Returns a list of objects with the most wanted searches

params:

none

result:

  • items: Array of objects with an attribute called item

/api/search

Returns the results of the search

params:

  • c: search term
  • page: number of page requested

result:

The returned data is a Json with three elements:

  • total: number of results
  • pages: number of pages
  • item: array where each element has the following attributes:
    • price
    • link
    • image
    • title

Sample query 1

http://searchvinyls.appspot.com/api/search?c=queen

Sample response 1

{"items": [{"price": null, "link": null, "image": "http://pictures4.todocoleccion.net/tc/2012/01/25/30177600_gal.jpg", "title": "(C84) Queen A Kind Of Magic Cd Musica Rock"}, {"price": null, "link": null, "image": "http://pictures.todocoleccion.net/tc/2012/01/07/29944521_gal.jpg", "title": "(D55) Queen Live At Wembley Stadium 2 Dvd Set Musica Rock Nuevos"}, {"price": null, "link": null, "image": "http://pictures4.todocoleccion.net/tc/2012/02/21/30599337_gal.jpg", "title": "(D21) Queen Queen On Fire Live At The Bowl 2 Discos Dvd Musica Rock"}, {"price": null, "link": null, "image": "http://pictures4.todocoleccion.net/tc/2012/03/03/30743463_gal.jpg", "title": "(F-C399) Queen Ii Cd Musica Hard Rock Sinfonico"}, {"price": null, "link": null, "image": "http://pictures4.todocoleccion.net/tc/2012/03/03/30743503_gal.jpg", "title": "(F-C400) Queen A Night At The Opera Ed. Coleccionista 30 Aniversario Cd + Dvd Digipack Musica Rock"}, {"price": null, "link": null, "image": "http://pictures4.todocoleccion.net/tc/2012/03/05/30778071_gal.jpg", "title": "(F-T5783) Queen The Game Cd Musica Hard Rock"}, {"price": null, "link": null, "image": "http://pictures.todocoleccion.net/tc/2012/01/09/29962349_gal.jpg", "title": "(T7963) Queen Jacky Gunn Y Jim Jenkins Coleccion Rock Pop Ediciones Catedra 1997 "}, {"price": null, "link": null, "image": "http://cloud1.todocoleccion.net/tc/2012/03/22/30993189_gal.jpg", "title": "(T-C333) Divine - Shoot Your Shot Uk 15 Tracks Cd Very Rare Drag Queen Music"}, {"price": null, "link": null, "image": "http://pictures4.todocoleccion.net/tc/2012/02/07/30369290_gal.jpg", "title": "(T3098) Queen Made In Heaven Cd Musica Rock"}, {"price": null, "link": null, "image": "http://www.todocoleccion.net/images/imagen_no_disponible.gif", "title": "(T3145) Concerts For The People Of Kampuchea 2 Lp The Clash The Who Queen Paul Mccartney Vinilo Rock"}], "total": 1045, "pages": 105}

Sample query 2

http://searchvinyls.appspot.com/api/mostwanted	

Sample response 2

{"items": [{"item": "Los Planetas"}, {"item": "Nirvana"}, {"item": "Bj\u00f6rk"}, {"item": "Lita Claver"}, {"item": "Triangulo De Amor Bizarro"}]}