> ## 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.

# /eventsge/events/search

> Search Events-GE events (Russian-language events across Georgia) by keyword, city, category, venue, hall and date range. Each item is an event with title, annotation, description, session dates with status, category, venue and address, city and country, age restriction, hall, performers, ticket price and currency, cover image and gallery and the event page URL.

**Price:** 1 credit

**💡 AI Hint:** Search Events-GE events. Optional filters: keyword (full-text), city (Tbilisi/Batumi/Rustavi/Poti), category (slug, e.g. rok/boi), place (venue id), hall (hall id), date_from/date_to (YYYY-MM-DD, by start date), date_type (active = upcoming, past). sort orders by event start date (asc = soonest first). lang selects the content language (ru/en/ka). Set count to how many results you want. Each item has id, event_source_id, title, annotation, description, start_at/end_at, dates, category/category_slug/category_type, venue, address, city/city_slug, country, restriction, hall, performers, price/currency, image, images and source_url.



## OpenAPI

````yaml /openapi/events-tickets.json post /api/eventsge/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/eventsge/events/search:
    post:
      tags:
        - /eventsge
      summary: /eventsge/events/search
      description: >-
        Search Events-GE events (Russian-language events across Georgia) by
        keyword, city, category, venue, hall and date range. Each item is an
        event with title, annotation, description, session dates with status,
        category, venue and address, city and country, age restriction, hall,
        performers, ticket price and currency, cover image and gallery and the
        event page URL.


        **Price:** 1 credit


        **💡 AI Hint:** Search Events-GE events. Optional filters: keyword
        (full-text), city (Tbilisi/Batumi/Rustavi/Poti), category (slug, e.g.
        rok/boi), place (venue id), hall (hall id), date_from/date_to
        (YYYY-MM-DD, by start date), date_type (active = upcoming, past). sort
        orders by event start date (asc = soonest first). lang selects the
        content language (ru/en/ka). Set count to how many results you want.
        Each item has id, event_source_id, title, annotation, description,
        start_at/end_at, dates, category/category_slug/category_type, venue,
        address, city/city_slug, country, restriction, hall, performers,
        price/currency, image, images and source_url.
      operationId: __api_eventsge_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/EventsgeEventsSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/EventsgeEvent'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    EventsgeEventsSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          description: Max scrapping execution timeout (in seconds)
          default: 300
        keyword:
          anyOf:
            - type: string
            - type: 'null'
          description: Full-text search query
          examples:
            - концерт
            - Меладзе
        city:
          anyOf:
            - $ref: '#/components/schemas/EventsgeCity'
            - type: 'null'
          description: City to filter by
        category:
          anyOf:
            - type: string
            - type: 'null'
          description: Category slug to filter by
          examples:
            - rok
            - boi
        place:
          anyOf:
            - type: integer
            - type: 'null'
          description: Venue (place) id to filter by
        hall:
          anyOf:
            - type: integer
            - type: 'null'
          description: Hall id to filter by
        date_from:
          anyOf:
            - type: string
            - type: 'null'
          description: Only events starting on or after this date (YYYY-MM-DD)
          examples:
            - '2026-08-01'
        date_to:
          anyOf:
            - type: string
            - type: 'null'
          description: Only events starting on or before this date (YYYY-MM-DD)
          examples:
            - '2026-09-01'
        date_type:
          $ref: '#/components/schemas/EventsgeDateType'
          description: Whether to return upcoming or past events
          default: active
        sort:
          $ref: '#/components/schemas/EventsgeSortOrder'
          description: Sort by event start date
          default: asc
        lang:
          $ref: '#/components/schemas/EventsgeLang'
          description: Content language
          default: ru
        count:
          type: integer
          minimum: 1
          description: Max number of events to return
      type: object
      required:
        - count
    EventsgeEvent:
      properties:
        '@type':
          type: string
          default: EventsgeEvent
        id:
          type: integer
        event_source_id:
          anyOf:
            - type: integer
            - type: 'null'
        annotation:
          anyOf:
            - type: string
            - type: 'null'
        description:
          anyOf:
            - type: string
            - type: 'null'
        start_at:
          anyOf:
            - type: string
            - type: 'null'
        end_at:
          anyOf:
            - type: string
            - type: 'null'
        dates:
          items:
            $ref: '#/components/schemas/EventsgeEventDate'
          type: array
          default: []
        is_periodical:
          anyOf:
            - type: boolean
            - type: 'null'
        category:
          anyOf:
            - type: string
            - type: 'null'
        category_slug:
          anyOf:
            - type: string
            - type: 'null'
        category_type:
          anyOf:
            - type: string
            - type: 'null'
        venue:
          anyOf:
            - type: string
            - type: 'null'
        address:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        city_slug:
          anyOf:
            - type: string
            - type: 'null'
        country:
          anyOf:
            - type: string
            - type: 'null'
        restriction:
          anyOf:
            - type: string
            - type: 'null'
        hall:
          anyOf:
            - type: string
            - type: 'null'
        performers:
          items:
            type: string
          type: array
          default: []
        price:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        qna:
          items:
            $ref: '#/components/schemas/EventsgeEventQna'
          type: array
          default: []
        source_url:
          anyOf:
            - type: string
            - type: 'null'
        lang:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
        - title
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    EventsgeCity:
      type: string
      enum:
        - tbilisi
        - batumi
        - rustavi
        - poti
    EventsgeDateType:
      type: string
      enum:
        - active
        - past
    EventsgeSortOrder:
      type: string
      enum:
        - asc
        - desc
    EventsgeLang:
      type: string
      enum:
        - ru
        - en
        - ka
    EventsgeEventDate:
      properties:
        '@type':
          type: string
          default: EventsgeEventDate
        id:
          anyOf:
            - type: integer
            - type: 'null'
        started_at:
          anyOf:
            - type: string
            - type: 'null'
        finished_at:
          anyOf:
            - type: string
            - type: 'null'
        status:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    EventsgeEventQna:
      properties:
        '@type':
          type: string
          default: EventsgeEventQna
        question:
          anyOf:
            - type: string
            - type: 'null'
        answer:
          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

````