Incentivio Menu Search Pass Through Controller API

The menu-search-pass-through-controller API from Incentivio — 2 operation(s) for menu-search-pass-through-controller.

Operations 2

GET /incentivio-menu-service/search/locations #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/incentivio-menu-search-pass-through-controller-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

incentivio-menu-search-pass-through-controller-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: OpenAPI definition Menu Search Pass Through Controller API
  version: v0
servers:
- url: https://adminapi.incentivio.com/incentivio-admin-api
  description: Generated server url
tags:
- name: menu-search-pass-through-controller
paths:
  /incentivio-menu-service/search:
    post:
      tags:
      - menu-search-pass-through-controller
      operationId: search
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SearchTargetingParams'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProductSearchResponse'
  /incentivio-menu-service/search/locations:
    get:
      tags:
      - menu-search-pass-through-controller
      operationId: searchLocations
      parameters:
      - name: extTargetingId
        in: query
        required: true
        schema:
          type: string
      - name: productType
        in: query
        required: true
        schema:
          $ref: '#/components/schemas/ProductType'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LocationDetailResponse'
components:
  schemas:
    LocationDetailResponse:
      type: object
      properties:
        extTargetingId:
          type: string
        productType:
          $ref: '#/components/schemas/ProductType'
        locations:
          type: array
          items:
            $ref: '#/components/schemas/TargetingLocationVariant'
    Status:
      type: string
      enum:
      - ACTIVE
      - INACTIVE
    ProductSearchResult:
      type: object
      properties:
        extTargetingId:
          type: string
        incentivioId:
          type: string
        externalId:
          type: string
        title:
          type: string
        productType:
          $ref: '#/components/schemas/ProductType'
        locationVariationCount:
          type: integer
          format: int32
        priceVariationCount:
          type: integer
          format: int32
    TargetingLocationVariant:
      type: object
      properties:
        productTitle:
          type: string
        incentivioId:
          type: string
        externalId:
          type: string
        locationId:
          type: string
        locationName:
          type: string
        price:
          type: string
        status:
          type: string
        itemType:
          type: string
        productId:
          type: string
    ItemType:
      type: string
      enum:
      - MAIN
      - MODIFIER
    SearchTargetingParams:
      type: object
      properties:
        query:
          type: string
        productType:
          $ref: '#/components/schemas/ProductType'
        status:
          $ref: '#/components/schemas/Status'
        itemType:
          $ref: '#/components/schemas/ItemType'
        locationIds:
          type: array
          items:
            type: string
        limit:
          type: integer
          format: int32
        cursor:
          type: string
    ProductSearchResponse:
      type: object
      properties:
        results:
          type: array
          items:
            $ref: '#/components/schemas/ProductSearchResult'
        nextCursor:
          type: string
        hasMoreResults:
          type: boolean
    ProductType:
      type: string
      enum:
      - ITEM
      - GROUP
      - MENU