Justin Kerr Sheckler
Developer API Lead
Etsy.com
jus...@etsy.com
> --
> You received this message because you are subscribed to the Google Groups "Etsy API V2" group.
> To post to this group, send email to etsy-...@googlegroups.com.
> To unsubscribe from this group, send email to etsy-api-v2...@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/etsy-api-v2?hl=en.
>
>
bieber_station$ curl -L "http://openapi.etsy.com/v2/public/shops/moop/listings/active?limit=1&fields=listing_id,title,price&sort_on=price&sort_order=up&api_key=<mad_dog>"
{"count":32,"results":[{"listing_id":58119143,"title":"The Letter Bag - in brushed brown and teal - with an adjustable strap","price":"133.00"}],"params":{"limit":"1","offset":0,"shop_id":"moop","keywords":null,"sort_on":"price","sort_order":"up","min_price":null,"max_price":null,"color":null,"color_accuracy":0,"tags":null,"materials":null,"category":null},"type":"Listing"}
Note the price is "133.00", in quotes.
bieber_station$ curl -L http://openapi.etsy.com/v2/public/shops/moop/listings/active?limit=1&fields=listing_id,title,price&sort_on=price&sort_order=up&tags=canvas&api_key=<boones>"
{"count":26,"results":[{"listing_id":59587542,"title":"The Duffel in rosewood (for assured boys and stalwart girls)","price":86}],"params":{"limit":"1","offset":0,"shop_id":"moop","keywords":null,"sort_on":"price","sort_order":"up","min_price":null,"max_price":null,"color":null,"color_accuracy":0,"tags":"canvas","materials":null,"category":null},"type":"Listing"}
Note the price is 86, with not quotes. The only change was to add 'tags=canvas' to the call.
This will, of course, cause problems when working with languages that actually care about types.
Thanks,
Julian