I
I
iffkomc2015-09-22 16:27:24
API
iffkomc, 2015-09-22 16:27:24

An online store from which you can get a product catalog in json format?

You need to take a json file with real products of some online store for your angular application. Guys, tell me how and where can I do this?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
S
stayHARD, 2015-09-22
@stayHARD

pastebin.com/AvjGsD3U The
example is taken from the office. Shopify documentation.

<?xml version="1.0" encoding="utf-8"?>  
<response status="ok">  
<products total="14">  
    <product>  
            <product_id>1</product_id>  
            <name>Product Name</name>  
            <description>Full Product Description</description>  
            <price>113.90</price>  
            <status>Coming Soon</status>  
            <tags>toys, kids, speedcar, racer</tags>  
  
            <shippable>yes</shippable>  
            <downloadable>no</downloadable>  
            <taxable>yes</taxable>  
            <categories>  
                <category category_id="149">Toys</category>  
            </categories>  
    </product>  
  
    ....  
</products>  
</response>

Example taken from https://www.wazala.com/api/docs/admin/

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question