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

# /yolo/events

> Get full Yolo event details by event slug or event page URL: title, category, description, image and gallery, ticket price and currency, service languages, schedule sessions (date, weekday, time, price range and external buy link), venue with address and coordinates, city, country, external ticket url and source.

**Price:** 1 credit

**💡 AI Hint:** Fetch a single Yolo (Tbilisi/Batumi, Georgia) event by slug (e.g. 'la-traviata56757574547547') or its event URL. Returns one item with id, alias, title, category, description, image, images, price (from-price) and currency (GEL), service_languages, start_at/end_at (YYYY-MM-DD), city, country, venue, address, latitude/longitude, location_url, ticket_url, source_url and sessions[] (date, weekday, time, price_min, price_max, buy_url).

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



## OpenAPI

````yaml /openapi/events-tickets.json post /api/yolo/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/yolo/events:
    post:
      tags:
        - /yolo
      summary: /yolo/events
      description: >-
        Get full Yolo event details by event slug or event page URL: title,
        category, description, image and gallery, ticket price and currency,
        service languages, schedule sessions (date, weekday, time, price range
        and external buy link), venue with address and coordinates, city,
        country, external ticket url and source.


        **Price:** 1 credit


        **💡 AI Hint:** Fetch a single Yolo (Tbilisi/Batumi, Georgia) event by
        slug (e.g. 'la-traviata56757574547547') or its event URL. Returns one
        item with id, alias, title, category, description, image, images, price
        (from-price) and currency (GEL), service_languages, start_at/end_at
        (YYYY-MM-DD), city, country, venue, address, latitude/longitude,
        location_url, ticket_url, source_url and sessions[] (date, weekday,
        time, price_min, price_max, buy_url).


        **⚠️ Common errors:** 412: Event not found (well-formed but nonexistent
        event slug)
      operationId: __api_yolo_events_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/YoloEventsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/YoloEvent'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    YoloEventsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          description: Max scrapping execution timeout (in seconds)
          default: 300
        event:
          type: string
          minLength: 1
          description: Yolo event slug or event page URL
          examples:
            - la-traviata56757574547547
            - https://yolo.ge/ru/poster/la-traviata56757574547547
      type: object
      required:
        - event
    YoloEvent:
      properties:
        '@type':
          type: string
          default: YoloEvent
        id:
          anyOf:
            - type: string
            - type: 'null'
        alias:
          anyOf:
            - type: string
            - type: 'null'
        category:
          anyOf:
            - type: string
            - type: 'null'
        description:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        price:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          anyOf:
            - type: string
            - type: 'null'
        service_languages:
          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'
        country:
          anyOf:
            - type: string
            - type: 'null'
          default: Georgia
        venue:
          anyOf:
            - type: string
            - type: 'null'
        address:
          anyOf:
            - type: string
            - type: 'null'
        latitude:
          anyOf:
            - type: number
            - type: 'null'
        longitude:
          anyOf:
            - type: number
            - type: 'null'
        location_url:
          anyOf:
            - type: string
            - type: 'null'
        location_alias:
          anyOf:
            - type: string
            - type: 'null'
        ticket_url:
          anyOf:
            - type: string
            - type: 'null'
        source_url:
          anyOf:
            - type: string
            - type: 'null'
        sessions:
          items:
            $ref: '#/components/schemas/YoloEventSession'
          type: array
          default: []
        lang:
          type: string
          default: ru
      type: object
      required:
        - title
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    YoloEventSession:
      properties:
        '@type':
          type: string
          default: YoloEventSession
        date:
          anyOf:
            - type: string
            - type: 'null'
        weekday:
          anyOf:
            - type: string
            - type: 'null'
        time:
          anyOf:
            - type: string
            - type: 'null'
        price_min:
          anyOf:
            - type: number
            - type: 'null'
        price_max:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          anyOf:
            - type: string
            - type: 'null'
        buy_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

````