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

# Get User Activity

> Get user activity for a given user and market



## OpenAPI

````yaml /swagger.json get /user/activity
openapi: 3.0.1
info:
  contact: {}
  title: VoxFi API
  version: 0.0.1
servers:
  - url: https://data-api-dev.voxfi.com.br/v1
security: []
paths:
  /user/activity:
    get:
      tags:
        - user
      summary: Get User Activity
      description: Get user activity for a given user and market
      parameters:
        - name: x-api-key
          in: header
          description: API Key
          required: true
          schema:
            type: string
        - name: marketId
          in: query
          description: Market ID
          schema:
            type: string
        - name: eventId
          in: query
          description: Event ID
          schema:
            type: string
        - name: marketStatus
          in: query
          description: >-
            Market Status. Comma separated list of market statuses. Example:
            1,2,3. Empty means all statuses
          schema:
            type: string
        - name: eventStatus
          in: query
          description: >-
            Event Status. Comma separated list of event statuses. Example:
            1,2,3. Empty means all statuses
          schema:
            type: string
        - name: page
          in: query
          description: Page
          schema:
            type: integer
        - name: pageSize
          in: query
          description: Page Size
          schema:
            type: integer
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/models.UserActivity'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                type: object
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                type: object
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                type: object
        '429':
          description: Too many requests
          content:
            application/json:
              schema:
                type: object
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                type: object
components:
  schemas:
    models.UserActivity:
      type: object
      properties:
        market_id:
          type: string
        event_id:
          type: string
        market_description:
          type: string
        event_description:
          type: string
        event_slug:
          type: string
        event_thumbnail_url:
          type: string
        market_thumbnail_url:
          type: string
        contract_type:
          type: string
        created_at:
          type: string
        price_ticks:
          type: integer
        quantity:
          type: integer
        side:
          type: string

````