Last active
August 29, 2015 14:09
-
-
Save stevenyxu/60a96e0b762ee0cbe095 to your computer and use it in GitHub Desktop.
Tatcha API
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ curl 'http://api.tatcha.com/shop/api/rest/products?page=1&limit=3&order=name&dir=asc' -H "Accept: text/xml" | |
<?xml version="1.0"?> | |
<magento_api> | |
<data_item> | |
<entity_id>314</entity_id> | |
<sku>GOLD-TUMBLER-GP</sku> | |
<name>24-Karat Gold Leaf Tumblers</name> | |
<short_description><p>You'll be the host's favorite with such an elegant and tasteful gift. Purchasing for yourself? Bravo. You'll have the daily benefit of seeign something beautiful in your cabinets every time you peek inside. Set of Two.</p></short_description> | |
<description><div>Sharing a drink is symbolic of celebration, gathering and friendship. These special glasses, made exclusively for TATCHA by expert artisans in Shizuoka near Mt. Fuji, combine three cherished forms of Japanese craftsmanship &mdash; handmade washi paper (set at the base); gold-leafing and urushi lacquering on the exterior. Each one is a piece of art, hand-crafted to last for generations.&nbsp;</div>
 | |
<div>&nbsp;</div>
 | |
<div>Custom in Japan dictates that one must never pour one's own drink and that no glass ever be empty, thus ensuring a never-ending cycle of camaraderie and good cheer. Kanpai! (Cheers!)</div>
 | |
<div>&nbsp;</div>
 | |
<div>Not microwave or dishwasher safe. The glasses hold 6.5 fl. oz. each and are presented in a handmade wooden kiri box.</div></description> | |
<image_url>http://cdn.tatcha.com/shop/media/catalog/product/cache/0/image/9df78eab33525d08d6e5fb8d27136e95/3/1/313_curatedgifts_washitumblers_1377x1314.jpg</image_url> | |
</data_item> | |
<data_item> | |
<entity_id>344</entity_id> | |
<sku>BLOT-TUBE-GP</sku> | |
<name>Aburatorigami Japanese Beauty Papers</name> | |
<short_description><p><span>Removes excess oil and sweat without disturbing makeup or stealing moisture from the skin. A powder and primer alternative that improves the wear of makeup.</span></p></short_description> | |
<description><p><span>What it is:</span><br />All-natural leaflet blotting sheets which absorb excess oil without disturbing makeup for petal fresh skin anytime, anywhere. Now purse friendly, in a tube.<br /><br /><span>How it's different:</span><br />Will not steal moisture from the skin or disturb makeup.&nbsp;Powder-free. &nbsp;Fragrance-free. &nbsp;Pulp-free.</p>
 | |
<p><span>Who it's for:</span><br />All skin types.</p></description> | |
<image_url>http://cdn.tatcha.com/shop/media/catalog/product/cache/0/image/9df78eab33525d08d6e5fb8d27136e95/x/x/xxx_productpage_website_blottingtube_2400x2400.png</image_url> | |
</data_item> | |
<data_item> | |
<entity_id>41</entity_id> | |
<sku>CL-KIRI-15-GP</sku> | |
<name>Aburatorigami Kiri Gift Box (15 Packs)</name> | |
<short_description>An ideal gift for the beauty lover in your life, each set contains 15 packs of gold flecked aburatorigami and is gift wrapped in a handmade kiribako, a traditional Japanese wooden box used to protect treasured items such as silk kimonos and precious gifts. 
 | |

 | |

 | |

 | |
</short_description> | |
<description><p><strong>What it is:<br /></strong>An ideal gift for the beauty lover in your life, each set contains 15 packs of gold flecked aburatorigami and is gift wrapped in a handmade kiribako, a traditional Japanese wooden box used to protect treasured items such as silk kimonos and precious gifts.&nbsp;The box was custom made for TATCHA in Tokyo by a 200-year old artisan shop and has dimensions of&nbsp;<span>32.5 x 20.5 x 8cm.</span></p>
 | |

 | |
<p><strong>How it's different</strong>:<br />All-natural leaflets will&nbsp;not steal moisture from the skin or disturb makeup.&nbsp;Powder-free. &nbsp;Fragrance-free. &nbsp;Pulp-free.</p>
 | |

 | |
<p><strong>Who it's for</strong>:<br />All skin types.</p></description> | |
<image_url>http://cdn.tatcha.com/shop/media/catalog/product/cache/0/image/9df78eab33525d08d6e5fb8d27136e95/p/r/prod_r_originalaburatorigami_kirigiftbox_1_copy.jpg</image_url> | |
</data_item> | |
</magento_api> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ curl 'http://api.tatcha.com/shop/api/rest/products/2' -H "Accept: application/json" | |
{"entity_id":"2","sku":"PC-OIL-GP","name":"One Step Camellia Cleansing Oil","description":"<p><strong>What it is<\/strong>:<br \/>A beautiful blend of <a href=\"\/ingredients\/camellia\" title=\"Ingredient - Camellia Oil\">camellia<\/a> and rice bran oils. Melts away even waterproof makeup leaving skin fresh and pure.<br \/><br \/><strong>Why it's different<\/strong>:<br \/>Does not contain mineral oil. No double cleansing required.<br \/><br \/><strong>Who it's for<\/strong>:<br \/>All skin types. Non-irritating. Non-sensitizing. Dermatologist tested.<\/p>","short_description":"<p>This beautiful blend of camellia and rice bran oil melts away impurities and even waterproof makeup. Skin is left fresh and pure in just 1 step.<\/p>","image_url":"http:\/\/cdn.tatcha.com\/shop\/media\/catalog\/product\/cache\/0\/image\/9df78eab33525d08d6e5fb8d27136e95\/p\/r\/prod_r_cleansingoil_1_2_copy.jpg","url":"https:\/\/www.tatcha.com\/shop\/index.php\/catalog\/product\/view\/id\/2\/s\/one-step-camellia-cleansing-oil\/"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment