> ## Documentation Index
> Fetch the complete documentation index at: https://docs.anysite.io/llms.txt
> Use this file to discover all available pages before exploring further.

# /showman/events/search

> Search and list Showman events (Russian-language concerts, theatre, shows and stand-up in Israel). Filter by free-text keyword, genre or city, and sort the results. Each event has id, title, alias, source_url, description, image(s), category, genres and currency.

**Price:** 1 credit

**💡 AI Hint:** List Showman events. Set count for how many to return. Filter by keyword (free text), genre (e.g. Концерт, Театр, Юмор) or city (e.g. Иерусалим, Тель-Авив); city cannot be combined with keyword or genre. Sort with sort (date/title/popularity/rating) and order (asc/desc). Each item has id, title, alias, source_url, description, image, images, category, genres and currency. For schedule, prices and venue use showman/events.



## OpenAPI

````yaml /openapi/events-tickets.json post /api/showman/events/search
openapi: 3.1.0
info:
  title: Any Site API
  description: >+
    Any Site API provides programmatic access to data from LinkedIn, Instagram,
    Twitter, and other platforms.


    ## Authentication


    All API endpoints require an `access-token` header with a valid API token.
    Tokens can be created in the [dashboard](https://app.anysite.io/).


    ## Pricing


    Each endpoint has a credit cost listed in its description. Credits are
    deducted from your token balance per request.

  version: 0.0.1
servers: []
security:
  - AccessToken: []
paths:
  /api/showman/events/search:
    post:
      tags:
        - /showman
      summary: /showman/events/search
      description: >-
        Search and list Showman events (Russian-language concerts, theatre,
        shows and stand-up in Israel). Filter by free-text keyword, genre or
        city, and sort the results. Each event has id, title, alias, source_url,
        description, image(s), category, genres and currency.


        **Price:** 1 credit


        **💡 AI Hint:** List Showman events. Set count for how many to return.
        Filter by keyword (free text), genre (e.g. Концерт, Театр, Юмор) or city
        (e.g. Иерусалим, Тель-Авив); city cannot be combined with keyword or
        genre. Sort with sort (date/title/popularity/rating) and order
        (asc/desc). Each item has id, title, alias, source_url, description,
        image, images, category, genres and currency. For schedule, prices and
        venue use showman/events.
      operationId: __api_showman_events_search_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ShowmanEventsSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ShowmanEvent'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ShowmanEventsSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          description: Max scrapping execution timeout (in seconds)
          default: 300
        keyword:
          anyOf:
            - type: string
            - type: 'null'
          description: Free-text query to search events by title
        genre:
          anyOf:
            - $ref: '#/components/schemas/ShowmanGenre'
            - type: 'null'
          description: Filter events by genre
        city:
          anyOf:
            - $ref: '#/components/schemas/ShowmanCity'
            - type: 'null'
          description: Filter events by city
        sort:
          anyOf:
            - $ref: '#/components/schemas/ShowmanSort'
            - type: 'null'
          description: Sort events by this field
        order:
          anyOf:
            - $ref: '#/components/schemas/ShowmanOrder'
            - type: 'null'
          description: Sort direction
        count:
          type: integer
          minimum: 1
          description: Max number of events to return
      type: object
      required:
        - count
    ShowmanEvent:
      properties:
        '@type':
          type: string
          default: ShowmanEvent
        id:
          anyOf:
            - type: string
            - type: 'null'
        sku:
          anyOf:
            - type: string
            - type: 'null'
        alias:
          type: string
        source_url:
          type: string
        description:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        category:
          anyOf:
            - type: string
            - type: 'null'
        genres:
          items:
            type: string
          type: array
          default: []
        start_at:
          anyOf:
            - type: string
            - type: 'null'
        end_at:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        venue:
          anyOf:
            - type: string
            - type: 'null'
        address:
          anyOf:
            - type: string
            - type: 'null'
        country:
          anyOf:
            - type: string
            - type: 'null'
        price_min:
          anyOf:
            - type: number
            - type: 'null'
        price_max:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          type: string
          default: ILS
        ticket_url:
          anyOf:
            - type: string
            - type: 'null'
        event_status:
          anyOf:
            - type: string
            - type: 'null'
        attendance_mode:
          anyOf:
            - type: string
            - type: 'null'
        is_in_stock:
          anyOf:
            - type: boolean
            - type: 'null'
        lang:
          type: string
          default: ru
        sessions:
          items:
            $ref: '#/components/schemas/ShowmanEventSession'
          type: array
          default: []
      type: object
      required:
        - title
        - alias
        - source_url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    ShowmanGenre:
      type: string
      enum:
        - 18+
        - Club
        - Comedy
        - Disco
        - StandUp
        - Акустический
        - Балет
        - Бизнес
        - Вечеринка
        - Встреча
        - Выставка
        - Голливуд
        - Детям
        - Джаз
        - Документальное
        - Инструментальная музыка
        - Кино
        - Классика
        - Концерт
        - Лекция
        - Метал
        - мюзикл
        - Новогоднее
        - Опера
        - Оркестр
        - Панк
        - Психология
        - Рок
        - Рэп
        - Семейный
        - Сказка
        - Танец
        - Творческий вечер
        - Театр
        - Украина
        - Фестиваль
        - Шоу
        - Юмор
    ShowmanCity:
      type: string
      enum:
        - Cyprus
        - Cyprus Limassol 4540 Paramytha
        - Emek izrael
        - Kfar Baruch
        - Limassol 4540 Paramytha
        - Tel-Aviv
        - Акко
        - Ариэль
        - Афула
        - Ашдод
        - Ашкелон
        - Бат-Ям
        - Беэр-Шева
        - Герцлия
        - Иерусалим
        - Йокнеам
        - Кармиэль
        - Кейсария
        - Киббуц Ган-Шмуэль
        - Кирьят-Гат
        - Кирьят-Моцкин
        - Кирьят-Оно
        - Кирьят-Хаим
        - Кирьят-Ям
        - Кфар Врадим
        - Кфар Вродим
        - Кфар-Саба
        - Лод
        - Маалот
        - Модиин
        - Наария
        - Нес-Циона
        - Нетания
        - Нетивот
        - Ноф а-Галиль (Нацерет-Илит)
        - Ор-Акива
        - Петах-Тиква
        - Раанана
        - Рамат а-Шарон
        - Рамат-Ган
        - Рамле
        - Реховот
        - Ришон ле-Цион
        - Тель-Авив
        - Хадера
        - Хайфа
        - Хариш
        - Холон
        - эйлат
        - Эйлат
    ShowmanSort:
      type: string
      enum:
        - date
        - title
        - price
        - popularity
        - rating
        - menu_order
    ShowmanOrder:
      type: string
      enum:
        - asc
        - desc
    ShowmanEventSession:
      properties:
        '@type':
          type: string
          default: ShowmanEventSession
        id:
          anyOf:
            - type: string
            - type: 'null'
        start_at:
          anyOf:
            - type: string
            - type: 'null'
        weekday:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        venue:
          anyOf:
            - type: string
            - type: 'null'
        address:
          anyOf:
            - type: string
            - type: 'null'
        price_min:
          anyOf:
            - type: number
            - type: 'null'
        price_max:
          anyOf:
            - type: number
            - type: 'null'
        ticket_url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
        msg:
          type: string
        type:
          type: string
        input: {}
        ctx:
          type: object
      type: object
      required:
        - loc
        - msg
        - type
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````