> For clean Markdown content of this page, append .md to this URL. For the complete documentation index, see https://buildwithfern.com/learn/llms.txt.

## API Explorer中的凭据自动填充

让开发者免去查找和复制API密钥的麻烦。当用户通过认证后，他们的API凭据将自动填入API Playground。这样，他们可以更快地进行第一次API调用。

![API Explorer Splash Image](/learn/_fern-img/34b3d273fdad7177b207a9aef28dd26e475aec08a26754341d6455734903e921.webp)

在[Webflow的API Explorer](https://developers.webflow.com/data/reference/sites/list?playground=/data/reference/sites/list)中查看实时效果。

Read the docs

## 卡片组件系统

增强了文档卡片组件，改善视觉组织效果。信息现在可以以更结构化和吸引人的方式呈现。

```typescript
interface CardProps {
  title: string;
  description: string;
  icon?: IconName;
  variant?: 'default' | 'bordered' | 'filled';
  actions?: CardAction[];
}

interface CardAction {
  label: string;
  href?: string;
  onClick?: () => void;
}
```

Read the docs