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

# List actions across every tracked app



## OpenAPI

````yaml /api-reference/openapi.json get /actions
openapi: 3.0.0
info:
  title: asobeast API
  description: Self hosted ASO toolkit API
  version: 0.4.0
  contact: {}
servers:
  - url: http://localhost:3000/api/backend
    description: Web origin proxy
  - url: http://localhost:4000
    description: Direct API
security:
  - personalApiToken: []
tags: []
paths:
  /actions:
    get:
      tags:
        - actions
      summary: List actions across every tracked app
      operationId: ActionsController_list
      parameters:
        - name: status
          required: false
          in: query
          schema:
            type: array
            items:
              type: string
              enum:
                - OPEN
                - SNOOZED
                - DONE
                - DISMISSED
                - RESOLVED
        - name: priority
          required: false
          in: query
          schema:
            type: array
            items:
              type: string
              enum:
                - critical
                - high
                - medium
                - low
        - name: rule
          required: false
          in: query
          schema:
            type: array
            items:
              type: string
              enum:
                - keyword.add_uncovered
                - keyword.defend
                - keyword.prune
                - rank.investigate_drop
                - serp.hold_volatile
                - audit.fix_factor
                - reviews.investigate_theme
                - market.improve_country
        - name: category
          required: false
          in: query
          schema:
            type: string
            enum:
              - metadata
              - competition
              - regression
              - conversion
              - reputation
              - markets
              - hygiene
        - name: appId
          required: false
          in: query
          schema:
            type: string
        - name: country
          required: false
          in: query
          schema:
            pattern: ^[a-z]{2}$
            example: us
            type: string
        - name: store
          required: false
          in: query
          schema:
            type: string
            enum:
              - APP_STORE
              - GOOGLE_PLAY
        - name: limit
          required: false
          in: query
          schema:
            minimum: 1
            maximum: 200
            default: 100
            allOf:
              - $ref: '#/components/schemas/Object'
      responses:
        '200':
          description: The prioritized action queue
components:
  schemas:
    Object:
      type: object
      properties: {}
  securitySchemes:
    personalApiToken:
      scheme: bearer
      bearerFormat: asob
      type: http

````