diff --git a/fern/products/sdks/capabilities.mdx b/fern/products/sdks/capabilities.mdx
index 123ae415d..ae08cd766 100644
--- a/fern/products/sdks/capabilities.mdx
+++ b/fern/products/sdks/capabilities.mdx
@@ -11,6 +11,19 @@ layout: overview
+
+ Rich autocomplete and inline documentation in your editor
+
+
+ Learn more
+
+
+
+
+
+
+
+
Fine-tune SDK resources and method names
diff --git a/fern/products/sdks/guides/generated-sdk.mdx b/fern/products/sdks/guides/generated-sdk.mdx
index 6fbb86bd8..d497ae45c 100644
--- a/fern/products/sdks/guides/generated-sdk.mdx
+++ b/fern/products/sdks/guides/generated-sdk.mdx
@@ -21,6 +21,16 @@ that lists all available API methods organized by resource, including method
signatures with parameter types, usage examples, and request/response structures
for each endpoint.
+## IDE support and Intellisense
+
+Fern-generated SDKs include full type definitions that enable rich IDE support. When developers use your SDK in editors like VS Code, they get autocomplete, inline documentation, and type information.
+
+The inline documentation comes from your API definition. During the SDK generation process, Fern embeds your parameter descriptions, return types, and code examples directly in the code as docstrings (Python), JSDoc (TypeScript), Javadoc (Java), etc.
+
+
+
+
+
## Error handling
When the API returns a 4xx or 5xx status code, the SDK throws an error that includes the status code, error message, response body, and raw response object.
@@ -41,4 +51,4 @@ Your SDK users can configure individual requests using language-specific options
| Custom headers | Send additional headers with any request | TypeScript, Java, and Swift |
| Raw response data | Access response headers alongside parsed data | TypeScript, Python, and Go |
| Query parameters | Add extra query string parameters | TypeScript and Swift |
-| Abort signals | Cancel in-flight requests | TypeScript only |
\ No newline at end of file
+| Abort signals | Cancel in-flight requests | TypeScript only |
diff --git a/fern/products/sdks/images/intellisense-example.png b/fern/products/sdks/images/intellisense-example.png
new file mode 100644
index 000000000..8a67eb874
Binary files /dev/null and b/fern/products/sdks/images/intellisense-example.png differ