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

# List actions for a prompt

> Returns up to 100 existing and suggested actions explicitly linked by stored prompt evidence, with status and brief readiness. hasMore indicates truncated results.



## OpenAPI

````yaml /openapi.json get /projects/{projectId}/actions/from-prompt
openapi: 3.1.0
info:
  title: DevTune API
  version: 2.0.0
  description: >-
    API for programmatic access to your AI visibility data, webhook
    subscriptions, and automation workflows. Use this API to integrate DevTune
    data into CI/CD pipelines, BI tools, AI agents, and operational systems.
servers:
  - url: https://devtune.ai/api/v2
    description: Production
security:
  - bearerAuth: []
paths:
  /projects/{projectId}/actions/from-prompt:
    get:
      summary: List actions for a prompt
      description: >-
        Returns up to 100 existing and suggested actions explicitly linked by
        stored prompt evidence, with status and brief readiness. hasMore
        indicates truncated results.
      operationId: listPromptActions
      parameters:
        - name: projectId
          in: path
          required: true
          schema:
            type: string
            format: uuid
        - name: promptId
          in: query
          required: true
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: Related actions
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    properties:
                      hasMore:
                        type: boolean
                      actions:
                        type: array
                        items:
                          type: object
                          properties:
                            id:
                              type: string
                              format: uuid
                            title:
                              type: string
                            status:
                              type: string
                            suggestionStatus:
                              type:
                                - string
                                - 'null'
                            hidden:
                              type: boolean
                            briefStatus:
                              type:
                                - string
                                - 'null'
                            canGenerateBrief:
                              type: boolean
                            canRestore:
                              type: boolean
                            requiresHighStakesAcknowledgement:
                              type: boolean
                            relationship:
                              type: string
                              enum:
                                - evidence
                            supportingPromptCount:
                              type: integer
        '400':
          description: Invalid prompt ID
        '404':
          description: Prompt not found in this project
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        API key with dtk_live_ prefix. Obtain it from API Keys in the account
        sidebar. New keys start with all supported scopes selected for the
        chosen project, and you can narrow them to specific read/write scopes as
        needed.

````