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

# List prompts



## OpenAPI

````yaml /openapi.yaml get /domains/{domainId}/prompts
openapi: 3.1.0
info:
  title: Mentionpath API
  version: 1.0.0
  description: >
    Programmatic access to Mentionpath workspace data and actions.


    The REST API mirrors the MCP tool surface. Reads return immediately.
    Mutations may return

    `202` with `APPROVAL_REQUIRED` when invoked with a token that requires human
    approval.


    Base URL: `https://api.mentionpath.ai/api/v1`
servers:
  - url: https://api.mentionpath.ai/api/v1
    description: Production
security:
  - bearerAuth: []
tags:
  - name: Domains
  - name: Prompts
  - name: Audits
  - name: Competitors
  - name: Visibility
  - name: Mentions
  - name: Traffic
  - name: Webflow
  - name: Approvals
paths:
  /domains/{domainId}/prompts:
    get:
      tags:
        - Prompts
      summary: List prompts
      operationId: listPrompts
      parameters:
        - $ref: '#/components/parameters/domainId'
      responses:
        '200':
          description: Prompt definitions for the domain
components:
  parameters:
    domainId:
      name: domainId
      in: path
      required: true
      schema:
        type: string
        format: uuid
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        API token or OAuth access token from Account → API in the Mentionpath
        app.

````