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

# /showman/events

> Get full Showman event details by event slug or event page URL: title, description, image(s), genres, start and end date, city, venue, address, country, price range and currency, ticket url, event status, language and the full schedule of sessions (date, city, venue, address, price range and ticket link).

**Price:** 1 credit

**💡 AI Hint:** Fetch a single Showman event by slug (e.g. 'anna-asti-shou-carica'), event URL, or numeric product id. Returns one item with id, sku, title, alias (slug), description, image/images, category, genres, start_at/end_at, city, venue, address, country, price_min/price_max, currency, ticket_url, event_status, attendance_mode, is_in_stock, lang and sessions[] (each with start_at, weekday, city, venue, address, price_min/price_max, ticket_url).

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



## OpenAPI

````yaml /openapi/events-tickets.json post /api/showman/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/showman/events:
    post:
      tags:
        - /showman
      summary: /showman/events
      description: >-
        Get full Showman event details by event slug or event page URL: title,
        description, image(s), genres, start and end date, city, venue, address,
        country, price range and currency, ticket url, event status, language
        and the full schedule of sessions (date, city, venue, address, price
        range and ticket link).


        **Price:** 1 credit


        **💡 AI Hint:** Fetch a single Showman event by slug (e.g.
        'anna-asti-shou-carica'), event URL, or numeric product id. Returns one
        item with id, sku, title, alias (slug), description, image/images,
        category, genres, start_at/end_at, city, venue, address, country,
        price_min/price_max, currency, ticket_url, event_status,
        attendance_mode, is_in_stock, lang and sessions[] (each with start_at,
        weekday, city, venue, address, price_min/price_max, ticket_url).


        **⚠️ Common errors:** 412: Event not found (well-formed but nonexistent
        event slug)
      operationId: __api_showman_events_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ShowmanEventsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ShowmanEvent'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ShowmanEventsPayload:
      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 event page URL
          examples:
            - anna-asti-shou-carica
            - https://showman.co.il/e/anna-asti-shou-carica/
      type: object
      required:
        - event
    ShowmanEvent:
      properties:
        '@type':
          type: string
          default: ShowmanEvent
        id:
          anyOf:
            - type: string
            - type: 'null'
        sku:
          anyOf:
            - type: string
            - type: 'null'
        alias:
          type: string
        source_url:
          type: string
        description:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        category:
          anyOf:
            - type: string
            - type: 'null'
        genres:
          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'
        venue:
          anyOf:
            - type: string
            - type: 'null'
        address:
          anyOf:
            - type: string
            - type: 'null'
        country:
          anyOf:
            - type: string
            - type: 'null'
        price_min:
          anyOf:
            - type: number
            - type: 'null'
        price_max:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          type: string
          default: ILS
        ticket_url:
          anyOf:
            - type: string
            - type: 'null'
        event_status:
          anyOf:
            - type: string
            - type: 'null'
        attendance_mode:
          anyOf:
            - type: string
            - type: 'null'
        is_in_stock:
          anyOf:
            - type: boolean
            - type: 'null'
        lang:
          type: string
          default: ru
        sessions:
          items:
            $ref: '#/components/schemas/ShowmanEventSession'
          type: array
          default: []
      type: object
      required:
        - title
        - alias
        - source_url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    ShowmanEventSession:
      properties:
        '@type':
          type: string
          default: ShowmanEventSession
        id:
          anyOf:
            - type: string
            - type: 'null'
        start_at:
          anyOf:
            - type: string
            - type: 'null'
        weekday:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        venue:
          anyOf:
            - type: string
            - type: 'null'
        address:
          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'
      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

````