Skip to content

Products by Market and Brand

This function will retrieve a list of products for a given market/brand combination. It will return the market_product_code which is a required param to fetch a list of retailers.

A simplified web UI to access this data can be found here.

Path

https://epremise-api.b-fonline.com/products/{country_iso2_code}/{brand_id}

Method

POST

Required Parameters

Responses

  • 200 OK
    [
        {
            "market_product_code": "United_States_1000000000000009963000",
            "brand_name": "Jack Daniel's",
            "product_name": "Jack Daniel's Black 750 mL"
        },
        {
            "market_product_code": "United_States_1000000000000005553004",
            "brand_name": "Jack Daniel's",
            "product_name": "Jack Daniel's Sinatra Select 750mL"
        }
    ]
    
  • 422 (Unprocessable Entity)
    • Error message in JSON response
  • 500
    • Something has gone horribly wrong, please let us know.

Code Examples

1
2
3
curl -X GET \
https://epremise-api.b-fonline.com/products/us/1 \
-H 'cache-control: no-cache'