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

# /russianemirates/events

> Get full Russian Emirates event details by event slug or event page URL: title, description, image, start and end date, emirate, country, venue, geo coordinates, organizer, ticket price and currency, ticket url, categories and source url.

**Price:** 1 credit

**💡 AI Hint:** Fetch a single Russian Emirates event by slug (e.g. 'kontsert-rok-gruppy-def-leppard-v-dubaye') or its event URL. Returns one item with alias (slug), title, description, image, start_at and end_at (ISO date), emirate, country, venue, latitude, longitude, organizer, organizer_url, price, currency, ticket_url, categories and source_url.

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



## OpenAPI

````yaml /openapi/events-tickets.json post /api/russianemirates/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/russianemirates/events:
    post:
      tags:
        - /russianemirates
      summary: /russianemirates/events
      description: >-
        Get full Russian Emirates event details by event slug or event page URL:
        title, description, image, start and end date, emirate, country, venue,
        geo coordinates, organizer, ticket price and currency, ticket url,
        categories and source url.


        **Price:** 1 credit


        **💡 AI Hint:** Fetch a single Russian Emirates event by slug (e.g.
        'kontsert-rok-gruppy-def-leppard-v-dubaye') or its event URL. Returns
        one item with alias (slug), title, description, image, start_at and
        end_at (ISO date), emirate, country, venue, latitude, longitude,
        organizer, organizer_url, price, currency, ticket_url, categories and
        source_url.


        **⚠️ Common errors:** 412: Event not found (well-formed but nonexistent
        event slug)
      operationId: __api_russianemirates_events_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RussianemiratesEventsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/RussianemiratesEvent'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    RussianemiratesEventsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          description: Max scrapping execution timeout (in seconds)
          default: 300
        event:
          type: string
          minLength: 1
          description: Russian Emirates event slug or event page URL
          examples:
            - kontsert-rok-gruppy-def-leppard-v-dubaye
            - >-
              https://russianemirates.com/news/events/kontsert-rok-gruppy-def-leppard-v-dubaye/
      type: object
      required:
        - event
    RussianemiratesEvent:
      properties:
        '@type':
          type: string
          default: RussianemiratesEvent
        alias:
          anyOf:
            - type: string
            - type: 'null'
        description:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        start_at:
          anyOf:
            - type: string
            - type: 'null'
        end_at:
          anyOf:
            - type: string
            - type: 'null'
        emirate:
          anyOf:
            - type: string
            - type: 'null'
        country:
          anyOf:
            - type: string
            - type: 'null'
        venue:
          anyOf:
            - type: string
            - type: 'null'
        latitude:
          anyOf:
            - type: number
            - type: 'null'
        longitude:
          anyOf:
            - type: number
            - type: 'null'
        organizer:
          anyOf:
            - type: string
            - type: 'null'
        organizer_url:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          anyOf:
            - type: string
            - type: 'null'
        ticket_url:
          anyOf:
            - type: string
            - type: 'null'
        view_count:
          anyOf:
            - type: integer
            - type: 'null'
        categories:
          items:
            type: string
          type: array
          default: []
        source_url:
          anyOf:
            - type: string
            - type: 'null'
        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

````