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

# Get Feature Info

> Get detailed information for a specific feature/subfeature.

Args:
    feature: Feature name (e.g., 'text', 'image', 'ocr', 'translation')
    subfeature: Subfeature name (e.g., 'ai_detection', 'ocr', 'generation')
    format: Schema output format (simplified or json_schema)

Returns:
    - Feature and subfeature display names
    - Input schema
    - Output schema
    - Available providers and their models



## OpenAPI

````yaml https://api.edenai.run/v3/docs/openapi.json get /v3/info/{feature}/{subfeature}
openapi: 3.1.0
info:
  title: Eden AI API V3
  version: 3.0.0
servers:
  - url: https://api.edenai.run
    description: Production server
security: []
paths:
  /v3/info/{feature}/{subfeature}:
    get:
      tags:
        - info
      summary: Get Feature Info
      description: |-
        Get detailed information for a specific feature/subfeature.

        Args:
            feature: Feature name (e.g., 'text', 'image', 'ocr', 'translation')
            subfeature: Subfeature name (e.g., 'ai_detection', 'ocr', 'generation')
            format: Schema output format (simplified or json_schema)

        Returns:
            - Feature and subfeature display names
            - Input schema
            - Output schema
            - Available providers and their models
      operationId: get_feature_info_v3_info__feature___subfeature__get
      parameters:
        - name: feature
          in: path
          required: true
          schema:
            type: string
            title: Feature
        - name: subfeature
          in: path
          required: true
          schema:
            type: string
            title: Subfeature
        - name: format
          in: query
          required: false
          schema:
            $ref: '#/components/schemas/SchemaFormat'
            description: >-
              Schema format: 'simplified' for flat readable format,
              'json_schema' for full Pydantic JSON Schema
            default: simplified
          description: >-
            Schema format: 'simplified' for flat readable format, 'json_schema'
            for full Pydantic JSON Schema
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SubfeatureDetailResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    SchemaFormat:
      type: string
      enum:
        - simplified
        - json_schema
      title: SchemaFormat
      description: Output format for schema information.
    SubfeatureDetailResponse:
      properties:
        feature:
          type: string
          title: Feature
        feature_fullname:
          type: string
          title: Feature Fullname
        subfeature:
          type: string
          title: Subfeature
        subfeature_fullname:
          type: string
          title: Subfeature Fullname
        description:
          anyOf:
            - type: string
            - type: 'null'
          title: Description
        mode:
          type: string
          enum:
            - sync
            - async
          title: Mode
        endpoints:
          additionalProperties: true
          type: object
          title: Endpoints
        input_schema:
          additionalProperties: true
          type: object
          title: Input Schema
        output_schema:
          additionalProperties: true
          type: object
          title: Output Schema
        models:
          items:
            additionalProperties: true
            type: object
          type: array
          title: Models
      type: object
      required:
        - feature
        - feature_fullname
        - subfeature
        - subfeature_fullname
        - mode
        - endpoints
        - input_schema
        - output_schema
        - models
      title: SubfeatureDetailResponse
      description: Detailed response for a specific subfeature.
    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

````