Usage API Webhook
The usage api webhook will be triggered once an hour for all usage stores that have recordings in the past hour.
import { verifyWebhookRequest, WebhookData } from "usage-api/webhook";
export async function ApiHandler(request: Request) {
try {
const webhookData: WebhookData = await verifyWebhookRequest(
process.env.USAGE_API_WEBHOOK_SECRET,
request
);
// handle the response
} catch (e) {
return new Response("Failed to verify webhook", { status: 400 });
}
}
type WebhookData = {
project: string;
usageStore: string;
usage: {
blocked: number;
rateLimited: number;
unauthenticated: number;
auth: number;
recorded: number;
usageRecords: {
[usageRecordKey: string]: number
};
};
}