Skip to main content
GET
/
api
/
products
/
{slug}
cURL
curl --request GET \
  --url https://api.pricenow.dev/api/products/{slug} \
  --header 'pratiq-client-id: <pratiq-client-id>'
{
  "data": {
    "id": 123,
    "sortOrder": 123,
    "name": "<string>",
    "identifier": "<string>",
    "type": "TICKET",
    "isSubscription": true,
    "standalone": true,
    "hasValidity": true,
    "priceModel": "STATIC",
    "content": {
      "title": "<string>",
      "caption": "<string>",
      "shortDescription": "<string>",
      "description": "<any>",
      "images": [
        {
          "imageUrl": "<string>",
          "lqip": "<string>",
          "altText": "<string>"
        }
      ],
      "tags": [
        {
          "caption": "<string>",
          "description": "<string>",
          "icon": "<string>"
        }
      ],
      "seoTitle": "<string>",
      "seoDescription": "<string>",
      "seoKeywords": [
        "<string>"
      ],
      "seoImages": [
        {
          "imageUrl": "<string>",
          "lqip": "<string>",
          "altText": "<string>"
        }
      ],
      "banner": {
        "text": "<string>",
        "color": "<string>",
        "icon": "<string>",
        "cta": {
          "title": "<string>",
          "color": "primary",
          "variant": "link",
          "product": {
            "slug": "<string>"
          },
          "link": "<string>",
          "page": {
            "slug": "<string>"
          },
          "newTab": true
        }
      }
    },
    "merchant": {
      "identifier": "<string>",
      "timezone": "<string>"
    },
    "category": {
      "id": 123,
      "title": "<string>",
      "description": "<string>",
      "tags": [
        "<any>"
      ]
    },
    "standardPriceRange": {
      "minPrice": 123,
      "maxPrice": 123
    },
    "standardProductVariantId": 123,
    "productVariants": [
      {
        "id": 123,
        "name": "<string>",
        "vatRate": 123,
        "productId": 123,
        "availableMedia": [
          {
            "id": 123,
            "type": "SKIDATA",
            "requiredProductVariants": [
              {
                "id": 123,
                "name": "<string>",
                "vatRate": 123,
                "productId": 123,
                "attributes": [
                  {
                    "name": "<string>",
                    "identifier": "<string>",
                    "value": "<string>",
                    "sortOrder": 123,
                    "metaInformation": {}
                  }
                ]
              }
            ]
          }
        ],
        "attributes": [
          {
            "name": "<string>",
            "identifier": "<string>",
            "value": "<string>",
            "sortOrder": 123,
            "metaInformation": {}
          }
        ],
        "externalIds": [
          {
            "system": "<string>",
            "kind": "<string>",
            "value": "<string>"
          }
        ],
        "priceRange": {
          "minPrice": 123,
          "maxPrice": 123
        }
      }
    ]
  }
}

Headers

pratiq-client-id
required

Global Webshop Client Id

pratiq-channel-uuid
string

UUID of the sales channel

Path Parameters

slug
string
required

Response

200 - application/json

Successful response

data
object
required