PriceShape API
    • API Conventions
    • API Versioning
    • API Authentication
    • root
      • GET-root/
        GET
    • feeds
      • GET-feeds/feeds
        GET
      • GET-feeds/feeds/:priceshapeId
        GET
    • products
      • history
        • GET-products/products/history/:upi
    • Schemas
      • Schemas
      • Response
        • UnauthorizedError
        • NotFoundError
        • BadRequestError
      • feeds
      • feeds-filter-query
      • feed
      • product-history
      • product-history-query

    def-3(product-history)

    {
        "pagination": {
            "total": 0,
            "max": 0,
            "offset": 0,
            "links": {
                "previous": {
                    "href": "http://example.com",
                    "method": "GET"
                },
                "self": {
                    "href": "http://example.com",
                    "method": "GET"
                },
                "next": {
                    "href": "http://example.com",
                    "method": "GET"
                }
            }
        },
        "history": [
            {
                "date": "string",
                "id": "string",
                "priceshapeId": "string",
                "gtin": "string",
                "mpn": "string",
                "sku": "string",
                "url": "string",
                "upi": "string",
                "currency": "string",
                "pricePosition": 0,
                "salesPriceInclVat": 0,
                "salesPriceExclVat": 0,
                "vendors": [
                    {
                        "domain": "string",
                        "price": 0,
                        "stockStatus": "string",
                        "currency": "string",
                        "scrapedAt": "string"
                    }
                ]
            }
        ]
    }
    Built with