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

# /nashvancouver/events/search

> List Nash Vancouver events (Russian-language Vancouver concerts, shows, festivals and past events). Filter by category or a free-text keyword; with no filter, returns the full upcoming-events listing. Each event has title, category, start date and time, venue, ticket price and currency, image and an excerpt.

**Price:** 1 credit

**💡 AI Hint:** List Nash Vancouver events. Set count to how many you want. Filter by category (concert / show / festival / past) or a free-text keyword; with no filter you get all upcoming events. Each item has id, title, description, category, category_alias, start_at and end_at (ISO local datetime), venue, city, country, price, currency, image and source_url. Fetch full details (address, contact_name, phone, website, ticket_url, related_ids) via nashvancouver/events.



## OpenAPI

````yaml /openapi/events-tickets.json post /api/nashvancouver/events/search
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/nashvancouver/events/search:
    post:
      tags:
        - /nashvancouver
      summary: /nashvancouver/events/search
      description: >-
        List Nash Vancouver events (Russian-language Vancouver concerts, shows,
        festivals and past events). Filter by category or a free-text keyword;
        with no filter, returns the full upcoming-events listing. Each event has
        title, category, start date and time, venue, ticket price and currency,
        image and an excerpt.


        **Price:** 1 credit


        **💡 AI Hint:** List Nash Vancouver events. Set count to how many you
        want. Filter by category (concert / show / festival / past) or a
        free-text keyword; with no filter you get all upcoming events. Each item
        has id, title, description, category, category_alias, start_at and
        end_at (ISO local datetime), venue, city, country, price, currency,
        image and source_url. Fetch full details (address, contact_name, phone,
        website, ticket_url, related_ids) via nashvancouver/events.
      operationId: __api_nashvancouver_events_search_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/NashvancouverEventsSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/NashvancouverEvent'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    NashvancouverEventsSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          description: Max scrapping execution timeout (in seconds)
          default: 300
        category:
          anyOf:
            - $ref: '#/components/schemas/NashvancouverCategory'
            - type: 'null'
          description: >-
            Restrict to an events category; with no category the full
            upcoming-events listing is used
        keyword:
          anyOf:
            - type: string
              minLength: 1
            - type: 'null'
          description: Free-text query to search events by
        count:
          type: integer
          minimum: 1
          description: Max number of events to return
      type: object
      required:
        - count
    NashvancouverEvent:
      properties:
        '@type':
          type: string
          default: NashvancouverEvent
        id:
          type: string
        description:
          anyOf:
            - type: string
            - type: 'null'
        category:
          anyOf:
            - type: string
            - type: 'null'
        category_alias:
          anyOf:
            - type: string
            - type: 'null'
        start_at:
          anyOf:
            - type: string
            - type: 'null'
        end_at:
          anyOf:
            - type: string
            - type: 'null'
        venue:
          anyOf:
            - type: string
            - type: 'null'
        address:
          anyOf:
            - type: string
            - type: 'null'
        map_url:
          anyOf:
            - type: string
            - type: 'null'
        contact_name:
          anyOf:
            - type: string
            - type: 'null'
        phone:
          anyOf:
            - type: string
            - type: 'null'
        website:
          anyOf:
            - type: string
            - type: 'null'
        city:
          type: string
          default: Vancouver
        country:
          type: string
          default: Canada
        price:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          anyOf:
            - type: string
            - type: 'null'
        ticket_url:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        related_ids:
          items:
            type: string
          type: array
          default: []
        source_url:
          anyOf:
            - type: string
            - type: 'null'
        lang:
          type: string
          default: ru
      type: object
      required:
        - id
        - title
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    NashvancouverCategory:
      type: string
      enum:
        - concert
        - show
        - festival
        - past
    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

````