> ## Documentation Index
> Fetch the complete documentation index at: https://dripart-chore-sync-comfy-api-v2-spec-462120c.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Get server feature flags

> Returns the server's feature capabilities



## OpenAPI

````yaml https://api.comfy.org/openapi get /features
openapi: 3.0.2
info:
  title: Comfy API
  version: '1.0'
servers:
  - url: https://api.comfy.org
security: []
tags:
  - description: >-
      Comfy Router's canonical, model-ID-addressed routes. Router endpoints
      carry this tag and never the `API Nodes` tag: `API Nodes` drives ComfyUI's
      Partner-Node Pydantic codegen off the provider-shaped `/proxy/*` surface,
      and reusing it would couple the Router contract to that generator. New
      Router routes belong here.
    name: Comfy Router
paths:
  /features:
    get:
      tags:
        - Registry
      summary: Get server feature flags
      description: Returns the server's feature capabilities
      operationId: GetFeatures
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FeaturesResponse'
          description: Success
components:
  schemas:
    FeaturesResponse:
      properties:
        partner_node_conversion_rate:
          description: The conversion rate for partner nodes
          example: 0.5
          type: number
      required:
        - partner_node_conversion_rate
      type: object

````