API keys is now generally available. (#8059) by @wobsoriano
<APIKeys /> componentimport { APIKeys } from '@clerk/react';
export default function Page() {
return <APIKeys />;
}
useAPIKeys() hookimport { useAPIKeys } from '@clerk/react';
export default function CustomAPIKeys() {
const { data, isLoading, page, pageCount, fetchNext, fetchPrevious } = useAPIKeys({
pageSize: 10,
initialPage: 1,
});
if (isLoading) return <div>Loading...</div>;
return (
<ul>
{data?.map(key => (
<li key={key.id}>{key.name}</li>
))}
</ul>
);
}
Adjust padding and display logo on OrganizationList header (#8229) by @LauraBeatris
Updated dependencies [2c06a5f]:
Fetched April 8, 2026