1. root
PriceShape API Staging
  • API Conventions
  • API Versioning
  • API Authentication
  • root
    • GET-root/
      GET
  • feeds
    • GET-feeds/feeds
      GET
    • GET-feeds/feeds/:priceshapeId
      GET
  1. root

GET-root/

Developing
GET
/
Permission:products:read

Request

Authorization
JWT Bearer
Add the parameter
Authorization
to Headers
Example:
Authorization: ********************
or
Query Params

Responses

🟢200OK
application/json
Default Response
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.staging.priceshape.io/?example' \
--header 'Authorization: Bearer <token>'
Response Response Example
{
    "links": {
        "self": {
            "href": "http://example.com",
            "method": "GET"
        }
    },
    "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"
            }
        }
    },
    "feeds": [
        {
            "links": {
                "self": {
                    "href": "http://example.com",
                    "method": "GET"
                }
            },
            "name": "string",
            "source": "string",
            "type": "string",
            "url": "string",
            "costPriceVatIncluded": 0,
            "priceVatIncluded": true,
            "salesPriceVatIncluded": true,
            "fixedVatPercent": 0,
            "priceshapeId": "string",
            "region": "st",
            "currency": "str",
            "marketplace": "string",
            "decimalSeparator": "auto",
            "draft": true,
            "healthScore": 0,
            "subFeeds": [
                {
                    "name": "string",
                    "source": "string",
                    "type": "string",
                    "url": "string",
                    "costPriceVatIncluded": 0,
                    "priceVatIncluded": true,
                    "salesPriceVatIncluded": true,
                    "fixedVatPercent": 0
                }
            ],
            "variantOptions": {
                "type": "master",
                "productPriceSummary": "cheapest",
                "productStockSummary": 0,
                "vendorPriceSummary": "cheapest",
                "vendorShippingPriceSummary": "cheapest",
                "vendorStockSummary": 0
            },
            "salesDataIntegration": {
                "priceshapeId": "string",
                "name": "string"
            },
            "updatedAt": "string",
            "mainFeed": "string",
            "import": {
                "nextImportAt": "string",
                "nextManualImportAllowedAt": "string",
                "lastImportAt": "string",
                "lastSuccessfulImportAt": "string"
            }
        }
    ]
}
Modified at 2026-03-08 16:48:38
Previous
API Authentication
Next
GET-feeds/feeds
Built with