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

# Summarize one action with the optional AI seam



## OpenAPI

````yaml /api-reference/openapi.json post /actions/{id}/explain
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/{id}/explain:
    post:
      tags:
        - actions
      summary: Summarize one action with the optional AI seam
      operationId: ActionsController_explain
      parameters:
        - name: id
          required: true
          in: path
          schema:
            type: string
      responses:
        '200':
          description: A plain-language summary of the evidence
components:
  securitySchemes:
    personalApiToken:
      scheme: bearer
      bearerFormat: asob
      type: http

````