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

# /bilety/events

> Get full Bilety.co.il event details by event slug or UUID: title, description, main image and photo gallery, ticket source, price range, start and end date, the full list of sessions (city, venue, date, time, price range and external ticket url), user comments and recommended events.

**Price:** 1 credit

**💡 AI Hint:** Fetch one Bilety.co.il event by its slug (e.g. 'anna-asti-shou-carica') or UUID. Returns one item with id, alias (slug), title, description, image, images (gallery), source, country, price_min, price_max, start_date, end_date, seances (city/venue/date/time/price/ticket_url), comments and recommended events.

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



## OpenAPI

````yaml /openapi/events-tickets.json post /api/bilety/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/bilety/events:
    post:
      tags:
        - /bilety
      summary: /bilety/events
      description: >-
        Get full Bilety.co.il event details by event slug or UUID: title,
        description, main image and photo gallery, ticket source, price range,
        start and end date, the full list of sessions (city, venue, date, time,
        price range and external ticket url), user comments and recommended
        events.


        **Price:** 1 credit


        **💡 AI Hint:** Fetch one Bilety.co.il event by its slug (e.g.
        'anna-asti-shou-carica') or UUID. Returns one item with id, alias
        (slug), title, description, image, images (gallery), source, country,
        price_min, price_max, start_date, end_date, seances
        (city/venue/date/time/price/ticket_url), comments and recommended
        events.


        **⚠️ Common errors:** 412: Event not found (well-formed but nonexistent
        event slug or UUID)
      operationId: __api_bilety_events_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BiletyEventsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BiletyEvent'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    BiletyEventsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          description: Max scrapping execution timeout (in seconds)
          default: 300
        event:
          type: string
          minLength: 1
          description: Event slug or UUID (also accepts a bilety.co.il event URL)
          examples:
            - anna-asti-shou-carica
            - 9325c870-a247-11f0-b905-c3da0a6c3037
      type: object
      required:
        - event
    BiletyEvent:
      properties:
        '@type':
          type: string
          default: BiletyEvent
        id:
          anyOf:
            - type: string
            - type: 'null'
        alias:
          anyOf:
            - type: string
            - type: 'null'
        description:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        source:
          anyOf:
            - type: string
            - type: 'null'
        country:
          type: string
          default: Израиль
        price_min:
          anyOf:
            - type: number
            - type: 'null'
        price_max:
          anyOf:
            - type: number
            - type: 'null'
        start_date:
          anyOf:
            - type: string
            - type: 'null'
        end_date:
          anyOf:
            - type: string
            - type: 'null'
        seances:
          items:
            $ref: '#/components/schemas/BiletySeance'
          type: array
          default: []
        comments:
          items:
            $ref: '#/components/schemas/BiletyComment'
          type: array
          default: []
        recommended:
          items:
            $ref: '#/components/schemas/BiletyRecommended'
          type: array
          default: []
        lang:
          type: string
          default: ru
      type: object
      required:
        - title
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    BiletySeance:
      properties:
        '@type':
          type: string
          default: BiletySeance
        id:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        venue:
          anyOf:
            - type: string
            - type: 'null'
        date:
          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'
        ticket_url:
          anyOf:
            - type: string
            - type: 'null'
        source:
          anyOf:
            - type: string
            - type: 'null'
        is_available:
          anyOf:
            - type: boolean
            - type: 'null'
      type: object
    BiletyComment:
      properties:
        '@type':
          type: string
          default: BiletyComment
        id:
          anyOf:
            - type: string
            - type: 'null'
        author:
          anyOf:
            - type: string
            - type: 'null'
        text:
          anyOf:
            - type: string
            - type: 'null'
        created_at:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    BiletyRecommended:
      properties:
        '@type':
          type: string
          default: BiletyRecommended
        alias:
          anyOf:
            - type: string
            - type: 'null'
        image:
          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

````