November 27, 2024

Auto-Populate Credentials in API Explorer

Save developers the hassle of finding and copying their API key. When authenticated, their API credentials will be automatically filled into the API Playground. This way, they can make their first API call even faster.

API Explorer Splash Image

Check it out live in Webflow’s API Explorer.

Card Component System

Enhanced documentation card components for better visual organization. Information can now be presented in a more structured and appealing way.

1interface CardProps {
2 title: string;
3 description: string;
4 icon?: IconName;
5 variant?: 'default' | 'bordered' | 'filled';
6 actions?: CardAction[];
7}
8
9interface CardAction {
10 label: string;
11 href?: string;
12 onClick?: () => void;
13}