Get allergens

Add MCP server to your AI tool

Allow AI tools and LLMs to interact with the API documentation portal through MCP.

MCP server URL

https://api-docs.lsk.lightspeed.app/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
"Lightspeed Restaurant K-Series MCP server": {
  "url": "https://api-docs.lsk.lightspeed.app/mcp"
}
Close
GET /i/allergens

Returns a list of all possible allergens that can be added to a rich item. See Allergens Table for more details.

Responses

  • 200 application/json

    Allergens

    Hide response attributes Show response attributes object
    • code string

      The allergen code.

    • translations array[object]

      List of translations.

      Hide translations attributes Show translations attributes object
      • locale string

        Language locale (eg. 'en' or 'en_US').

      • text string

        Translation in the language of the locale.

GET /i/allergens
curl \
 --request GET 'https://api.trial.lsk.lightspeed.app/i/allergens' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
  {
    "code": "fish",
    "translations": [
      {
        "locale": "en",
        "text": "Fish"
      },
      {
        "locale": "fr",
        "text": "Poisson"
      }
    ]
  }
]