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

> Get a full Events-GE event by id or event page URL: 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, FAQ and the event page URL.

**Price:** 1 credit

**💡 AI Hint:** Fetch a single Events-GE event by numeric id or by its page URL (https://events-ge.com/{lang}/{city}/events/{id}). lang selects the content language (ru/en/ka). Returns one item with id, event_source_id, title, annotation, description, start_at/end_at, dates (sessions), is_periodical, category/category_slug/category_type, venue, address, city/city_slug, country, restriction (age), hall, performers, price/currency, image, images (gallery), qna and source_url.

**⚠️ Common errors:** 412: Event not found (well-formed but nonexistent id)



## OpenAPI

````yaml /openapi/events-tickets.json post /api/eventsge/events
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:
    post:
      tags:
        - /eventsge
      summary: /eventsge/events
      description: >-
        Get a full Events-GE event by id or event page URL: 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, FAQ and the event page URL.


        **Price:** 1 credit


        **💡 AI Hint:** Fetch a single Events-GE event by numeric id or by its
        page URL (https://events-ge.com/{lang}/{city}/events/{id}). lang selects
        the content language (ru/en/ka). Returns one item with id,
        event_source_id, title, annotation, description, start_at/end_at, dates
        (sessions), is_periodical, category/category_slug/category_type, venue,
        address, city/city_slug, country, restriction (age), hall, performers,
        price/currency, image, images (gallery), qna and source_url.


        **⚠️ Common errors:** 412: Event not found (well-formed but nonexistent
        id)
      operationId: __api_eventsge_events_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/EventsgeEventsPayload'
      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:
    EventsgeEventsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          description: Max scrapping execution timeout (in seconds)
          default: 300
        event:
          type: string
          minLength: 1
          description: Event id or event page URL
          examples:
            - '211358'
            - https://events-ge.com/ru/tbilisi/events/211358
        lang:
          $ref: '#/components/schemas/EventsgeLang'
          description: Content language
          default: ru
      type: object
      required:
        - event
    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
    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

````