diff --git a/fern/products/cli-api-reference/cli-changelog/2025-11-14.mdx b/fern/products/cli-api-reference/cli-changelog/2025-11-14.mdx
index 83fb8271d..3fd02e8fd 100644
--- a/fern/products/cli-api-reference/cli-changelog/2025-11-14.mdx
+++ b/fern/products/cli-api-reference/cli-changelog/2025-11-14.mdx
@@ -1,5 +1,5 @@
## 1.2.0
-**`(feat):`** Show AI example generation progress in the spinner line. When generating AI examples, the spinner displays `generating AI examples for {API name} - X/Y`` to track progress without creating terminal noise.
+**`(feat):`** Show AI example generation progress in the spinner line. When generating AI examples, the spinner displays `generating AI examples for {API name} - X/Y` to track progress without creating terminal noise.
## 1.0.5
diff --git a/fern/products/docs/docs.yml b/fern/products/docs/docs.yml
index 95a17523f..70aff9341 100644
--- a/fern/products/docs/docs.yml
+++ b/fern/products/docs/docs.yml
@@ -295,6 +295,8 @@ navigation:
- section: Developer tools
collapsed: true
contents:
+ - page: Code snippet package
+ path: ./pages/developer-tools/code-snippet-package.mdx
- page: Orchestrate GitHub releases
path: ./pages/developer-tools/orchestrate-docs-releases.mdx
- page: Cursor
diff --git a/fern/products/docs/pages/changelog/2025-11-18.mdx b/fern/products/docs/pages/changelog/2025-11-18.mdx
new file mode 100644
index 000000000..594edf07b
--- /dev/null
+++ b/fern/products/docs/pages/changelog/2025-11-18.mdx
@@ -0,0 +1,7 @@
+## Code snippet package (coming soon)
+
+A new standalone npm package will allow you to embed Fern-generated API route documentation directly into your existing documentation site, regardless of whether you use Fern for your full documentation.
+
+The code snippet package provides a lightweight React component that fetches and renders API route information from your Fern API definition, enabling you to maintain your API definitions in Fern while embedding interactive API documentation into documentation sites built with other platforms like Docusaurus, GitBook, or custom solutions.
+
+[Learn more](/learn/docs/developer-tools/code-snippet-package) about the code snippet package.
diff --git a/fern/products/docs/pages/developer-tools/code-snippet-package.mdx b/fern/products/docs/pages/developer-tools/code-snippet-package.mdx
new file mode 100644
index 000000000..755dc5731
--- /dev/null
+++ b/fern/products/docs/pages/developer-tools/code-snippet-package.mdx
@@ -0,0 +1,194 @@
+---
+title: Code snippet package
+description: Embed Fern API routes into your existing documentation with a standalone package
+---
+
+
+This feature is coming soon. Check back for updates on availability.
+
+
+The code snippet package is a standalone npm package that allows you to embed Fern-generated API route documentation directly into your existing documentation site, regardless of whether you use Fern for your full documentation.
+
+## How it works
+
+The code snippet package provides a lightweight React component that fetches and renders API route information from your Fern API definition. This enables you to maintain your API definitions in Fern while embedding interactive API documentation into sites built with React frameworks like Next.js, Gatsby, or custom solutions.
+
+When you use the code snippet package, it displays:
+
+- HTTP method and endpoint path
+- Request parameters and body schema
+- Response schema and examples
+- Authentication requirements
+- Code examples in multiple languages
+
+The package automatically stays in sync with your API definition, ensuring your embedded documentation remains up-to-date whenever you update your API specification.
+
+## Use cases
+
+The code snippet package is useful when you:
+
+- Have existing documentation infrastructure you want to keep
+- Need to embed API documentation in multiple places (docs site, blog posts, internal wikis)
+- Want Fern's API definition management without migrating your entire documentation
+- Need to show specific API routes in context within longer guides or tutorials
+
+## Installation
+
+Install the package from npm:
+
+```bash
+npm install @fern-api/components
+```
+
+Or with other package managers:
+
+
+```bash title="pnpm"
+pnpm add @fern-api/components
+```
+
+```bash title="yarn"
+yarn add @fern-api/components
+```
+
+
+## Usage
+
+Import the component and provide your API endpoint details:
+
+```tsx
+import { FernApiRoute } from '@fern-api/components';
+
+function MyDocPage() {
+ return (
+
+
Create a plant
+
Use this endpoint to add a new plant to your collection.
+
+
+
+ );
+}
+```
+
+## Configuration
+
+The `FernApiRoute` component accepts the following props:
+
+
+ The name of your API as defined in your Fern configuration
+
+
+
+ The HTTP method and path of the endpoint to display (e.g., `"POST /plants/{plantId}"`)
+
+
+
+ Your Fern API token for authentication
+
+
+
+ Color theme for the embedded component
+
+
+
+ Whether to display code examples
+
+
+
+ Default programming language for code examples (e.g., `"typescript"`, `"python"`)
+
+
+## Styling
+
+The code snippet package uses CSS variables for theming, allowing you to customize the appearance to match your documentation site:
+
+```css
+.fern-api-route {
+ --fern-primary-color: #008700;
+ --fern-background-color: #ffffff;
+ --fern-text-color: #111113;
+ --fern-border-color: #e0e1e6;
+ --fern-code-background: #f5f5f5;
+}
+```
+
+## Authentication
+
+To use the code snippet package, you need a Fern API token. Generate one from your [Fern Dashboard](https://dashboard.buildwithfern.com/) under API Settings.
+
+The token allows the package to fetch your API definition and generate the embedded documentation. Keep your token secure and avoid committing it directly in your code. Use environment variables instead:
+
+```tsx
+
+```
+
+## Framework integration
+
+The code snippet package works with popular React frameworks:
+
+
+
+```tsx title="components/PlantEndpoint.tsx"
+'use client';
+
+import { FernApiRoute } from '@fern-api/components';
+
+export function PlantEndpoint() {
+ return (
+
+ );
+}
+```
+
+
+
+```tsx title="src/components/PlantEndpoint.tsx"
+import { FernApiRoute } from '@fern-api/components';
+
+export function PlantEndpoint() {
+ return (
+
+ );
+}
+```
+
+
+
+```tsx title="src/components/PlantEndpoint.tsx"
+import { FernApiRoute } from '@fern-api/components';
+
+export default function PlantEndpoint() {
+ return (
+
+ );
+}
+```
+
+
+
+## Related resources
+
+- [Generate API Reference](/docs/api-references/generate-api-ref) - Learn about Fern's full API documentation solution
+- [SDK snippets](/docs/api-references/sdk-snippets) - Configure code examples in your API Reference
+- [Fern API definitions](/learn/api-definitions/overview) - Define your API with OpenAPI, AsyncAPI, or Fern Definition