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

# /artgeorgia/events

> Get full ArtGeorgia event details by event id, id-alias or event page URL: title, category, event date, description, image gallery, venue, city, country, ticket price and currency, external ticket url, view count and source url. Covers concerts, theatre, exhibitions, festivals and other events in Tbilisi and Batumi.

**Price:** 1 credit

**💡 AI Hint:** Fetch a single ArtGeorgia event by numeric id (e.g. '1558'), id-alias ('1558-zemfira-batumi') or its page URL. Returns one item with id, alias, title, category, date_text, description, image, images, venue, city, country, price, currency, ticket_url, view_count and source_url.

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



## OpenAPI

````yaml /openapi/events-tickets.json post /api/artgeorgia/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/artgeorgia/events:
    post:
      tags:
        - /artgeorgia
      summary: /artgeorgia/events
      description: >-
        Get full ArtGeorgia event details by event id, id-alias or event page
        URL: title, category, event date, description, image gallery, venue,
        city, country, ticket price and currency, external ticket url, view
        count and source url. Covers concerts, theatre, exhibitions, festivals
        and other events in Tbilisi and Batumi.


        **Price:** 1 credit


        **💡 AI Hint:** Fetch a single ArtGeorgia event by numeric id (e.g.
        '1558'), id-alias ('1558-zemfira-batumi') or its page URL. Returns one
        item with id, alias, title, category, date_text, description, image,
        images, venue, city, country, price, currency, ticket_url, view_count
        and source_url.


        **⚠️ Common errors:** 412: Event not found (well-formed but nonexistent
        event id)
      operationId: __api_artgeorgia_events_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ArtgeorgiaEventsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ArtgeorgiaEvent'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ArtgeorgiaEventsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          description: Max scrapping execution timeout (in seconds)
          default: 300
        event:
          type: string
          minLength: 1
          description: ArtGeorgia event id, id-alias or event page URL
          examples:
            - '1558'
            - 1558-zemfira-batumi
            - https://artgeorgia.ge/afisha/concert/1558-zemfira-batumi
      type: object
      required:
        - event
    ArtgeorgiaEvent:
      properties:
        '@type':
          type: string
          default: ArtgeorgiaEvent
        id:
          anyOf:
            - type: string
            - type: 'null'
        alias:
          anyOf:
            - type: string
            - type: 'null'
        category:
          anyOf:
            - type: string
            - type: 'null'
        date_text:
          anyOf:
            - type: string
            - type: 'null'
        description:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        venue:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        country:
          anyOf:
            - type: string
            - type: 'null'
          default: Georgia
        price:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          anyOf:
            - type: string
            - type: 'null'
        ticket_url:
          anyOf:
            - type: string
            - type: 'null'
        view_count:
          anyOf:
            - type: integer
            - type: 'null'
        source_url:
          anyOf:
            - type: string
            - type: 'null'
        lang:
          type: string
          default: ru
      type: object
      required:
        - title
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      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

````