> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mobilerun.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Get an app event

> Fetch a single structured app event by its ID, including its typed payload, source, and originating device. Returns 404 if no event matches.



## OpenAPI

````yaml /api-reference/workflows.yaml get /app-events/{id}
openapi: 3.1.0
info:
  title: Workflows
  version: v1
servers:
  - url: https://api.mobilerun.ai
    description: Droidrun Cloud API
security:
  - bearerAuth: []
paths:
  /app-events/{id}:
    get:
      tags:
        - App Events
      summary: Get an app event
      description: >-
        Fetch a single structured app event by its ID, including its typed
        payload, source, and originating device. Returns 404 if no event
        matches.
      operationId: getAppEvent
      parameters:
        - schema:
            type: string
            format: uuid
          required: true
          name: id
          in: path
      responses:
        '200':
          description: App event
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/Event'
                required:
                  - data
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                required:
                  - error
components:
  schemas:
    Event:
      type: object
      properties:
        id:
          type: string
          format: uuid
        userId:
          type: string
          format: uuid
        deviceId:
          type:
            - string
            - 'null'
          format: uuid
        rawEventId:
          type:
            - string
            - 'null'
          format: uuid
        eventType:
          type: string
        source:
          type: string
          enum:
            - app
            - system
            - device
            - webhook
        payload:
          type: object
          additionalProperties: {}
        occurredAt:
          type:
            - string
            - 'null'
        createdAt:
          type:
            - string
            - 'null'
      required:
        - id
        - userId
        - deviceId
        - rawEventId
        - eventType
        - source
        - payload
        - occurredAt
        - createdAt
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: Opaque
      description: Bearer token via Authorization header

````