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

GET-feeds/feeds/:priceshapeId

Developing
GET
/feeds/{priceshapeId}
Permission:feeds:read

Request

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

Responses

🟢200
application/json
Default Response
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.staging.priceshape.io/feeds/' \
--header 'Authorization: Bearer <token>'
Response Response Example
{
    "links": {
        "self": {
            "href": "http://example.com",
            "method": "GET"
        }
    },
    "feed": {
        "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-04-07 11:48:03
Previous
GET-feeds/feeds
Built with