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

# Get the assistant's enabled platform tools (from active revision)

> Get platform_tools from the active revision.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/assistants/{agent_id}/platform-tools
openapi: 3.1.0
info:
  title: Feather API
  description: >-
    Unified customer experience platform API. Manages identity, conversations,
    memory, agents, procedures, policies, model routing, knowledge bases,
    integrations, and runtime execution.
  version: 1.87.0
servers:
  - url: https://api-sandbox.featherhq.com
    description: Sandbox
  - url: http://localhost:8000
    description: Local dev
security: []
paths:
  /v1/assistants/{agent_id}/platform-tools:
    get:
      tags:
        - assistants
      summary: Get the assistant's enabled platform tools (from active revision)
      description: Get platform_tools from the active revision.
      operationId: getAssistantPlatformTools
      parameters:
        - name: agent_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Agent Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AgentPlatformToolsResponse'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Authentication required
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Resource not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyHeader: []
components:
  schemas:
    AgentPlatformToolsResponse:
      properties:
        platform_tools:
          additionalProperties: true
          type: object
          title: Platform Tools
        has_flow:
          type: boolean
          title: Has Flow
          default: false
        continue_after_flow:
          anyOf:
            - $ref: '#/components/schemas/ContinueAfterFlowResolved'
            - type: 'null'
        end_session_in_flow:
          type: boolean
          title: End Session In Flow
          default: false
        end_session_after_flow:
          type: boolean
          title: End Session After Flow
          default: false
      type: object
      title: AgentPlatformToolsResponse
    ErrorResponse:
      properties:
        error:
          type: string
          title: Error
        message:
          type: string
          title: Message
        retryable:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Retryable
        retry_after:
          anyOf:
            - type: integer
            - type: 'null'
          title: Retry After
      type: object
      required:
        - error
        - message
      title: ErrorResponse
      description: Standard error response returned by all API error handlers.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ContinueAfterFlowResolved:
      properties:
        effective:
          type: boolean
          title: Effective
        source:
          type: string
          title: Source
        assistant_value:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Assistant Value
        org_value:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Org Value
      type: object
      required:
        - effective
        - source
      title: ContinueAfterFlowResolved
      description: >-
        The resolved ``continue_after_flow`` config with provenance (D2/§3.1).


        ``effective`` is the resolved bool the runtime uses. ``source`` names
        which

        tier supplied it (``"agent"``, ``"org"``, or ``"default"``).
        ``assistant_value``

        and ``org_value`` expose the raw per-tier settings (``None`` = inherit).
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: x-api-key

````