Skip to content

Get Single Brand

This function will return a single brand object, its metadata and varietals.

Path

https://api.b-fonline.com/api/brand/{id}

Method

GET

Required Parameters

  • id (brand id to fetch)

Responses

200 - JSON brand object

{
    "id": "46",
    "name": "El Jimador",
    "type": "SPIRIT",
    "minorBrands": [
        {
            "brand_minor_id": "753",
            "brand_minor_description": "AƱejo"
        },
        {
            "brand_minor_id": "1751",
            "brand_minor_description": "Lime"
        },
        {
            "brand_minor_id": "1752",
            "brand_minor_description": "Mango"
        },
        {
            "brand_minor_id": "750",
            "brand_minor_description": "Reposado"
        },
        {
            "brand_minor_id": "752",
            "brand_minor_description": "Silver"
        }
    ]
}

Code Examples

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