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

# Get tool details

> Returns details for a specific tool by its key.



## OpenAPI

````yaml https://originshq.b-cdn.net/openapi_sayna.json get /api/tools/catalog/{tool_key}
openapi: 3.1.0
info:
  title: core
  version: 0.1.0
servers: []
security: []
paths:
  /api/tools/catalog/{tool_key}:
    get:
      tags:
        - tools
        - tools
      summary: Get tool details
      description: Returns details for a specific tool by its key.
      operationId: get_tool_detail_api_tools_catalog__tool_key__get
      parameters:
        - name: tool_key
          in: path
          required: true
          schema:
            type: string
            title: Tool Key
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ToolManifest'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ToolManifest:
      properties:
        tool_key:
          type: string
          title: Tool Key
          description: Unique tool identifier, e.g. 'calendly'
        display_name:
          type: string
          title: Display Name
          description: Human-readable name for UI
        description:
          type: string
          title: Description
          description: What this tool does
        icon:
          anyOf:
            - type: string
            - type: 'null'
          title: Icon
          description: Icon name or emoji
        api_base_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Api Base Url
          description: Base URL for API calls
        functions:
          items:
            $ref: '#/components/schemas/FunctionDefinition'
          type: array
          title: Functions
          description: List of callable functions
        agent_config_schema:
          anyOf:
            - $ref: '#/components/schemas/AgentConfigSchema'
            - type: 'null'
          description: JSON Schema for per-agent settings validation
        post_call_task:
          anyOf:
            - type: string
            - type: 'null'
          title: Post Call Task
          description: Optional celery task name to execute after call ends
      type: object
      required:
        - tool_key
        - display_name
        - description
        - functions
      title: ToolManifest
      description: Metadata for a tool package loaded from manifest.json.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    FunctionDefinition:
      properties:
        name:
          type: string
          title: Name
          description: Unique function name, e.g. 'calendly.list_event_types'
        description:
          type: string
          title: Description
          description: LLM-facing description of what this function does
        parameters_json_schema:
          additionalProperties: true
          type: object
          title: Parameters Json Schema
          description: OpenAI-compatible JSON schema for parameters
        allowed_call_types:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
          title: Allowed Call Types
          description: 'Optional filter: [''INCOMING'', ''OUTGOING''] or None for all'
      type: object
      required:
        - name
        - description
        - parameters_json_schema
      title: FunctionDefinition
      description: Schema for a single function exposed to the LLM.
    AgentConfigSchema:
      properties:
        type:
          type: string
          title: Type
          default: object
        properties:
          additionalProperties: true
          type: object
          title: Properties
        required:
          items:
            type: string
          type: array
          title: Required
      type: object
      title: AgentConfigSchema
      description: JSON Schema for per-agent tool configuration.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````