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

# Get Prompt Tools

> Get prompt tools for a workspace



## OpenAPI

````yaml /public-apis/openapi/prompt-tools.json get /v1/prompt-tools
openapi: 3.0.0
info:
  version: 1.0.0
  contact:
    name: Maxim Engineering
    email: eng@getmaxim.ai
  title: Maxim SDK API - prompt-tools
  description: API documentation for Maxim SDK prompt-tools endpoints
servers:
  - url: https://api.getmaxim.ai
security: []
paths:
  /v1/prompt-tools:
    get:
      tags:
        - Prompt Tool
      summary: Get Prompt Tools
      description: Get prompt tools for a workspace
      parameters:
        - schema:
            type: string
            description: Unique identifier for the workspace
          required: true
          name: workspaceId
          in: query
        - schema:
            type: string
            description: Unique identifier for the prompt tool
          required: false
          name: id
          in: query
        - schema:
            type: string
            description: Name of the prompt tool
          required: false
          name: name
          in: query
        - schema:
            type: string
            description: Folder ID
          required: false
          name: folderId
          in: query
        - schema:
            type: number
            nullable: true
            maximum: 100
            default: 10
            description: Maximum number of records to return
          required: false
          name: limit
          in: query
        - schema:
            type: string
            description: Pagination cursor
          required: false
          name: cursor
          in: query
      responses:
        '200':
          description: Prompt tools retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                        name:
                          type: string
                        description:
                          type: string
                        type:
                          type: string
                        config:
                          nullable: true
                        folderId:
                          type: string
                          nullable: true
                        workspaceId:
                          type: string
                        accountId:
                          type: string
                        createdAt:
                          type: string
                        updatedAt:
                          type: string
                        fromMcpServer:
                          type: string
                      required:
                        - id
                        - name
                        - description
                        - type
                        - workspaceId
                        - accountId
                        - createdAt
                        - updatedAt
                  pagination:
                    type: object
                    properties:
                      hasMore:
                        type: boolean
                      cursor:
                        type: string
                        nullable: true
                    required:
                      - hasMore
                      - cursor
                required:
                  - data
                  - pagination
        '400':
          description: Invalid request parameters
        '401':
          description: Unauthorized
      security:
        - ApiKeyAuth: []
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-maxim-api-key
      description: API key for authentication

````