List available Input Processors

Returns a list of all available input processors that can be used to transform task inputs. Input processors are utility functions that can modify or enhance the input data before it is processed by the task. Each processor supports optional configuration parameters to customize its behavior. Available processors: - **url_fetcher**: Fetches HTML content from URLs - **perplexity_search**: Searches the web for real-time information - **document_content_extractor**: Extracts text from uploaded documents

Authentication

AuthorizationBearer

Bearer token authentication using JWT tokens from Ory Kratos/Hydra

Path Parameters

org_idstringRequiredformat: "uuid"
The unique identifier of the organization.
project_idstringRequiredformat: "uuid"
The unique identifier of the project.

Response

Successfully retrieved list of available input processors with their configuration options
namestring

The unique identifier/name of the input processor. Used to reference this processor in API calls.

descriptionstring

A human-readable description of what the input processor does.

config_schemamap from strings to any or null
JSON Schema describing the available configuration options for this processor. Null if the processor does not have a configuration schema.

Errors