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

# Get Enrichment Template

> Get enabled template metadata and hydrated config for the authenticated organization.

The list endpoint stays lightweight; this endpoint is used on explicit
selection so the UI can show the template fields and taxonomy before run
time. Large taxonomies can use taxonomy_format=compact for fast selection.



## OpenAPI

````yaml /api-reference/openapi.json get /public/enrichment-templates/{template_id}
openapi: 3.1.0
info:
  title: Rastro Public API
  description: >-
    Public API for enrichment, catalog management, workflows, activities,
    snapshots, taxonomy, and MCP integrations.
  version: 0.1.0
servers:
  - url: https://catalogapi.rastro.ai/api
security:
  - bearerAuth: []
paths:
  /public/enrichment-templates/{template_id}:
    get:
      tags:
        - Enrich
      summary: Get Enrichment Template
      description: >-
        Get enabled template metadata and hydrated config for the authenticated
        organization.


        The list endpoint stays lightweight; this endpoint is used on explicit

        selection so the UI can show the template fields and taxonomy before run

        time. Large taxonomies can use taxonomy_format=compact for fast
        selection.
      operationId: >-
        get_enrichment_template_api_public_enrichment_templates__template_id__get
      parameters:
        - name: template_id
          in: path
          required: true
          schema:
            type: string
            title: Template Id
        - name: include_taxonomy
          in: query
          required: false
          schema:
            type: boolean
            description: >-
              Hydrate and return the template taxonomy. Set false when only
              fields/prompts are needed.
            default: true
            title: Include Taxonomy
          description: >-
            Hydrate and return the template taxonomy. Set false when only
            fields/prompts are needed.
        - name: taxonomy_format
          in: query
          required: false
          schema:
            type: string
            pattern: ^(expanded|compact)$
            description: >-
              Return hydrated taxonomy as expanded nodes or compact deduplicated
              nodes.
            default: expanded
            title: Taxonomy Format
          description: >-
            Return hydrated taxonomy as expanded nodes or compact deduplicated
            nodes.
        - name: X-Organization-Id
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: X-Organization-Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - bearerAuth: []
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    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
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: Rastro API key or user token

````