For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Book a demoLog inStart for free
  • Getting started
    • Overview
    • How it works
    • Quickstart
    • Project structure
    • Customer showcase
    • Changelog
  • Configuration
    • Overview
    • Site-level settings
    • Page-level settings
  • Writing content
    • Markdown basics
    • Rich media in Markdown
      • Overview
      • Accordion
      • Anchor
      • Aside
      • Badge
      • Button
      • Callout
      • Card
      • Code block
      • Copy
      • Download
      • Endpoint request snippet
      • Endpoint response snippet
      • Endpoint schema snippet
      • Webhook payload snippet
      • Files
      • Frame
      • Icon
      • If
      • Indent
      • Parameter field
      • Prompt
      • Runnable endpoint
      • Schema
      • Step
      • Table
      • Tab
      • Tooltip
      • Versions
    • Fern Editor
    • Reusable snippets
  • AI features
    • Overview
    • Fern Writer
    • AI-generated examples
    • Markdown access
      • Overview
      • Customize LLM output
      • Agent directives
      • Analytics and integration
    • MCP server
    • API catalog discovery
  • Public API
    • GETJWT from Fern API key
    • GETAlgolia search credentials
    • GETCurrent user information
  • Fern Writer API
    • GETGet Fern Writer Install Link
Checking status...
SOC2Soc 2 Type II
© 2026 Fern • Birch Solutions, Inc., a Postman company

Documentation

SDKsDocsAsk FernCLI Reference

API Definitions

OpenAPIAsyncAPIOpenRPCgRPC

Resources

BlogSupportPricing

Company

Brand KitPrivacy PolicyTerms of Service
LogoLogo
Book a demoLog inStart for free
On this page
  • Usage
  • Variants
  • Deprecated parameter
  • Union types
  • Properties
Writing contentComponents

Parameter field

||View as Markdown|
Was this page helpful?
Edit this page
Previous

Indent

Next

Prompt

The ParamField component documents API parameters and properties with consistent formatting for type, requirements, default values, and descriptions.

Usage

username
stringRequired

The user’s display name

limit
numberDefaults to 50

Maximum number of items to return

Markdown
1<ParamField path="username" type="string" required={true}>
2 The user's display name
3</ParamField>
4
5<ParamField path="limit" type="number" default="50">
6 Maximum number of items to return
7</ParamField>

Variants

Deprecated parameter

api_key
stringDeprecated

Use OAuth authentication instead

Markdown
1<ParamField path="api_key" type="string" deprecated={true}>
2 Use OAuth authentication instead
3</ParamField>

Union types

status
'active' | 'inactive' | 'pending'Defaults to active

The current status of the user account

Markdown
1<ParamField path="status" type="'active' | 'inactive' | 'pending'" default="active">
2 The current status of the user account
3</ParamField>

Properties

path
string

The name of the parameter (e.g., “username”, “limit”)

type
stringRequired

The data type of the parameter (e.g., “string”, “number”, “boolean”)

required
boolean

Indicates if the parameter is required. Displays a “Required” label when true.

default
string

The default value for the parameter, if any

deprecated
boolean

Marks the parameter as deprecated.

toc
boolean

Whether to include the parameter in the table of contents. Defaults to false.