Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.unprice.dev/llms.txt

Use this file to discover all available pages before exploring further.

const { result, error } = await unprice.lakehouse.getFilePlan({
  projectId: "project_1234567890",
  interval: "30d",
  tables: ["usage"]
});

if (error) {
  console.error(error.message);
  return;
}

console.log(result);

Request

projectId
string
Optional project ID. Defaults to the authenticated project.
customerId
string
Optional customer ID filter.
tables
array
Optional table list. Supported values include usage, verification, metadata, and entitlement_snapshot.
interval
string
File window to inspect. Defaults to 30d.