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

# /expato/events

> Get full Expato.nl event details by route slug or event page URL: title, poster image, ticket url, price and currency, start date and time, city, venue, hall, language, categories, description, promo code, status, organizer and organizer website.

**Price:** 1 credit

**💡 AI Hint:** Fetch a single Expato.nl event by its route slug (e.g. 'slava-komissarenko-amsterdam-novaya-programma-14-sentyabrya-2026') or its event URL. Returns one item with id, alias, title, source_url, image, images, ticket_url, price, currency, start_at (unix seconds), display_until_at, city, venue, hall, language, categories, description, promo_code, has_promo, status, is_active, organizer, organizer_url, country and lang.

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



## OpenAPI

````yaml /openapi/events-tickets.json post /api/expato/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/expato/events:
    post:
      tags:
        - /expato
      summary: /expato/events
      description: >-
        Get full Expato.nl event details by route slug or event page URL: title,
        poster image, ticket url, price and currency, start date and time, city,
        venue, hall, language, categories, description, promo code, status,
        organizer and organizer website.


        **Price:** 1 credit


        **💡 AI Hint:** Fetch a single Expato.nl event by its route slug (e.g.
        'slava-komissarenko-amsterdam-novaya-programma-14-sentyabrya-2026') or
        its event URL. Returns one item with id, alias, title, source_url,
        image, images, ticket_url, price, currency, start_at (unix seconds),
        display_until_at, city, venue, hall, language, categories, description,
        promo_code, has_promo, status, is_active, organizer, organizer_url,
        country and lang.


        **⚠️ Common errors:** 412: Event not found (well-formed but nonexistent
        event slug)
      operationId: __api_expato_events_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ExpatoEventsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ExpatoEvent'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ExpatoEventsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          description: Max scrapping execution timeout (in seconds)
          default: 300
        event:
          type: string
          minLength: 1
          description: Event route slug or event page URL
          examples:
            - slava-komissarenko-amsterdam-novaya-programma-14-sentyabrya-2026
            - >-
              https://events.expato.nl/event/slava-komissarenko-amsterdam-novaya-programma-14-sentyabrya-2026
      type: object
      required:
        - event
    ExpatoEvent:
      properties:
        '@type':
          type: string
          default: ExpatoEvent
        id:
          anyOf:
            - type: string
            - type: 'null'
        alias:
          anyOf:
            - type: string
            - type: 'null'
        source_url:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        ticket_url:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          anyOf:
            - type: string
            - type: 'null'
        start_at:
          anyOf:
            - type: integer
            - type: 'null'
        display_until_at:
          anyOf:
            - type: integer
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        venue:
          anyOf:
            - type: string
            - type: 'null'
        hall:
          anyOf:
            - type: string
            - type: 'null'
        language:
          anyOf:
            - type: string
            - type: 'null'
        categories:
          items:
            type: string
          type: array
          default: []
        description:
          anyOf:
            - type: string
            - type: 'null'
        promo_code:
          anyOf:
            - type: string
            - type: 'null'
        has_promo:
          type: boolean
          default: false
        status:
          anyOf:
            - type: string
            - type: 'null'
        is_active:
          type: boolean
          default: false
        organizer:
          anyOf:
            - type: string
            - type: 'null'
        organizer_url:
          anyOf:
            - type: string
            - type: 'null'
        country:
          type: string
          default: Netherlands
        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

````