TheCocktailDB · JSON Structure

Thecocktaildb Filter Response Structure

Filtered cocktail list with summary information only

Type: object Properties: 1
CocktailsDrinksRecipesFood And BeverageOpen Data

FilterResponse is a JSON Structure definition published by TheCocktailDB, describing 1 property. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

drinks

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/thecocktaildb/refs/heads/main/json-structure/thecocktaildb-filter-response-structure.json",
  "name": "FilterResponse",
  "description": "Filtered cocktail list with summary information only",
  "type": "object",
  "properties": {
    "drinks": {
      "type": "array",
      "description": "Array of cocktail summaries",
      "items": {
        "type": "object",
        "properties": {
          "strDrink": {
            "type": "string",
            "description": "Cocktail name",
            "example": "Margarita"
          },
          "strDrinkThumb": {
            "type": "string",
            "description": "Thumbnail URL"
          },
          "idDrink": {
            "type": "string",
            "description": "Cocktail ID",
            "example": "11007"
          }
        }
      }
    }
  }
}