API Keys
stackfoundry/api-keysFreeBlock
API key lifecycle, scopes, hashed storage, usage metadata, and management UI.
Install it
npx shadcn@latest add https://stackfoundry.dev/r/api-keys.jsonSource
1import { pgTable, text, timestamp, uuid } from "drizzle-orm/pg-core";23export const apiKeys = pgTable("api_keys", {4 id: uuid("id").primaryKey().defaultRandom(),5 ownerId: text("owner_id").notNull(),6 name: text("name").notNull(),7 prefix: text("prefix").notNull(),8 hash: text("hash").notNull(),9 scopes: text("scopes").array().notNull().default([]),10 lastUsedAt: timestamp("last_used_at", { withTimezone: true }),11 revokedAt: timestamp("revoked_at", { withTimezone: true }),12 createdAt: timestamp("created_at", { withTimezone: true }).defaultNow().notNull(),13});
What it pulls in
Other registry items
Files it writes
More from stackfoundry
All 157 items| Component | Registry | Kind | Access | Installs | Command |
|---|---|---|---|---|---|
| Account Deletionaccount-deletion | stackfoundry | Blocks | Free | no deps · 3 files | |
| Account Modesaccount-modes | stackfoundry | Blocks | Free | no deps · 3 files | |
| Account Settingsaccount-settings | stackfoundry | Blocks | Free | no deps · 2 files | |
| Admin Consoleadmin-console | stackfoundry | Blocks | Free | no deps · 2 files | |
| Agent-Ready Installsagent-ready-installs | stackfoundry | Blocks | Free | no deps · 13 files | |
| AI Chatai-chat | stackfoundry | Blocks | Free | 3 deps · 4 files | |
| AI Chatbot SDKai-chatbot-sdk | stackfoundry | Blocks | Free | 3 deps · 2 files | |
| AI Elementsai-elements | stackfoundry | Blocks | Free | no deps · 5 files |
