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

# List the action kinds an agent can request

> Returns one entry per supported action kind. Pair with the schema at the referenced `$ref` (visible in /openapi.json) to build a request body.



## OpenAPI

````yaml /openapi.json get /api/actions/catalog
openapi: 3.1.0
info:
  title: Equated API
  version: 1.0.0
  description: >-
    Agent-facing accounting API. Authenticate with a bearer token issued from
    Settings → API Tokens, or via the in-app session cookie when called from the
    web client.
servers:
  - url: https://app.equated.co
    description: API server
security: []
paths:
  /api/actions/catalog:
    get:
      tags:
        - Actions
      summary: List the action kinds an agent can request
      description: >-
        Returns one entry per supported action kind. Pair with the schema at the
        referenced `$ref` (visible in /openapi.json) to build a request body.
      responses:
        '200':
          description: Catalog of action kinds
          content:
            application/json:
              schema:
                type: object
                properties:
                  actions:
                    type: array
                    items:
                      $ref: '#/components/schemas/ActionCatalogItem'
                required:
                  - actions
      security:
        - bearerAuth: []
components:
  schemas:
    ActionCatalogItem:
      type: object
      properties:
        kind:
          type: string
        description:
          type: string
        schemaRef:
          type: string
      required:
        - kind
        - description
        - schemaRef
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API token issued from the Equated app under Settings → API Tokens.

````