Price Parrot API v1
List all products This endpoint returns the products that have been added to Price Parrot starting from {offset}. The call returns up to {amount} products with a maximum of 100 products.
Request URL
GEThttps://api.priceparrot.io/products/list/{offset}/{amount}

Responses
200 Success404 No results found
//Returns a list of products.

{
    "products": [
        {
            "sku": "12345",
            "name": "Test product",
            "brand": "Price Parrot",
            "tags": "price, parrot, test",
            "costs": 1.23,
            "smartprice": 1.2,
            "instock": true,
            "url": "/test-product-price-parrot"
        }
    ]
}
Find products This endpoint returns the products that have been added to Price Parrot with the name, brand, SKU, EAN, GTIN or tags matching {searchterm} starting from {offset}. The call returns up to {amount} products with a maximum of 100 products.
Request URL
GEThttps://api.priceparrot.io/products/search/{searchterm}/{offset}/{amount}

Responses
200 Success404 No results found
//Returns a list of products.

{
    "products": [
        {
            "sku": "12345",
            "name": "Test product",
            "brand": "Price Parrot",
            "tags": "price, parrot, test",
            "costs": 1.23,
            "smartprice": 1.2,
            "instock": true,
            "url": "/test-product-price-parrot"
        }
    ]
}