1. Price
Example be.open API
  • be.open API
    • be.open API
    • Samples
    • Auth
      • Get api auth token
    • Attributes & Options
      • attributes
        • get country options of a product
      • get all available attributes
      • create or update an attribute
      • get a single attribute by id
      • adds or updates an option
      • list attribute categories
      • returns options for an attribute type of a service provider
    • Basket
      • get Basket
    • Price
      • get Price list
        POST
    • Categories
      • get product categories
      • Returns the products of a category.
    • Products & Combinations
      • get product configuration
      • get option configuration
      • get product attributes
      • get product independent attributes
      • Returns the products.
      • adds or updates a product with attributes, options and combinations.
      • Returns the single product.
      • adds or updates attributes, options and combinations of a product. Used to import combinations in parts
      • delete combinations.
      • get country attribute with options
    • Serviceprovider
      • change attribute settings just for this service provider
      • change option settings just for this service provider
      • change attribute category setting just for this service provider
      • list orders for a service provider
      • get an order for a service provider
      • update order status from service provider
    • Order
      • create an order
      • get order
    • change attribute category setting just for this service provider
      PATCH
    • change attribute category setting just for this service provider
      PATCH
    • Schemas
      • Schemas
        • Attribute
        • AttributeCategory
        • CategoryModel
        • Product
        • BasicOrder
        • Order
        • Option
        • ProductMetaInformation
        • Client
        • OrderDetail
        • OrderCustomField
        • OrderFile
        • OrderUpload
        • File
        • PartialDelivery
        • OrderDetailFile
        • ProductCombination
        • Address
        • OrderDetailPrice
        • OrderDetailCombination
        • Address2
        • PriceConfiguration
        • Currency
        • ConfigurationOption
        • Price
        • ConfigurationOptionSize
      • Improved Schemas
        • ExampleAttributesCollection
        • Attribute
        • AttributeMetaData
        • Category
      • Responses
      • Custom Schemas
        • UpdateServiceproviderOrderResponse
      • AttributeOption
      • CreateProduct
      • QuantityShipping
      • QuantityDelivery
      • DeleteQuantityShipping
      • placedOrder
      • DeleteQuantityDelivery
      • Authentication
      • AuthenticationResponse
      • CreateAttribute
      • CreateOption
      • CreateProductCombination
      • DeleteProductCombination
      • ProductTypeData
      • DependableAttribute
      • ProductVariant
      • DeleteProductVariant
      • ServiceproviderOrderDetail
      • DependableOption
      • ProductQuantity
      • ProductAttribute
      • DeleteProductQuantity
      • OrderDetailPage
      • OptionOfAttribute
      • ProductResponse
      • LooseLeafData
      • AttributeResponse
      • OrderResponse
      • OrderDetailResponse
      • OrderAttributeOption
      • BasketPrice
      • OrderAddressResponse
      • CreateOrderAddress
      • CreateOrder
      • PatchServiceProviderOrder
      • JsonApi
      • PaginationMeta
      • PaginationLinks
      • AttributesListResponse
      • AttributeSingleResponse
      • OptionSingleResponse
      • AttributeResource
      • OptionIdentifier
      • AttributeCategoryEmbedded
      • AttributeCategoryResource
      • OptionResource
  • Druckshop API
    • Cart
      • getByJobNumber
    • Tracking
      • getByJobNumber
      • addTrackingId
    • Order
      • getOrder
      • getOrders
      • getOrderByReference
      • getOrderCart
    • FreeOrder
      • addFreeOrder
    • Schemas
      • FreeOrder
      • FreeOrderResponse
      • ApiAddress
      • FreeOrderPrice
      • FreeOrderCart
      • FreeOrderArticle
      • FreeOrderDataKeyValuePrice
  • be.print Dashboard API
    • PlacedOrder
      • Store a newly created placedOrder
      • Update an existing placedOrder
    • PlacedOrderCart
      • Store a newly created placedOrderCart
      • Update an existing placedOrderCart
    • Sso
      • sso.getTokenCheck
      • sso.setUserMapping
    • ValidateCustomerApi
      • validateCustomerApi.whoAmI
      • validateCustomerApi.postExternalClient
    • Dashboard API (MOVE TO ANOTHER PROJECT)!
      • Customer
        • whoAmI
        • addExternalClient
      • Orders
        • create order
        • update order
        • update order cart
    • Schemas
      • Schemas
        • AddExternalClientRequest
        • PlacedOrderCartRequest
        • PlacedOrderRequest
        • SsoExternalLinkRequest
        • SsoExternalUserMapping
      • Response
        • AuthenticationException
        • ValidationException
        • AuthorizationException
        • ModelNotFoundException
      • placedOrder
  1. Price

get Price list

POST
/api/products/prices/lists
Returns a list of prices around a given product/sku configuration. Use the basket endpoint if you only need a single price. The server returns a 400 when sku is missing, and 404 when the product is not found or is deprecated/disabled. totalNumber defaults to 10 server-side; listType defaults to 0.

Request

Body Params application/json

Example
{
    "delivery_address": {
        "first_name": "Max",
        "last_name": "Mustermann",
        "street": "Beispielstraße",
        "house_number": "12a",
        "zip_code": "10115",
        "city": "Berlin",
        "country": "DE"
    },
    "currency": "EUR",
    "totalNumber": 100,
    "productId": "p1111111-1111-1111-1111-111111111111",
    "sku": "06dc8c77-097e-4ed6-b225-d468e3c0f3f2",
    "listType": 0
}

Responses

🟢200Success
application/json
Bodyapplication/json

Example
{
    "jsonapi": {
        "version": "1.0"
    },
    "data": [
        {
            "type": "prices",
            "id": "1",
            "attributes": {
                "option": {
                    "id": "a83eb679-73e3-4017-b897-4887622f9c99",
                    "quantity": 1
                },
                "price": {
                    "net": 8,
                    "gross": 9.52,
                    "vat": 1.52,
                    "currency": "EUR"
                }
            }
        },
        {
            "type": "prices",
            "id": "2",
            "attributes": {
                "option": {
                    "id": "3224e705-8826-4a51-a5d4-b6ec552a9b81",
                    "quantity": 5
                },
                "price": {
                    "net": 12.5,
                    "gross": 14.88,
                    "vat": 2.38,
                    "currency": "EUR"
                }
            }
        },
        {
            "type": "prices",
            "id": "3",
            "attributes": {
                "option": {
                    "id": "dee917c3-4825-44d0-a7b2-4ed3a27d0d53",
                    "quantity": 10
                },
                "price": {
                    "net": 18,
                    "gross": 21.42,
                    "vat": 3.42,
                    "currency": "EUR"
                }
            }
        }
    ]
}
🟠400
🟠404
Modified at 2026-05-29 10:44:16
Previous
get Basket
Next
get product categories
Built with