Utilities
Generation History
View and manage your AI generation history.
Documentation Index
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
View and manage your AI generation history.
tools.history.list
tools.history.get
tools.history.delete
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
toolType | string | No | "all" | Filter by tool type |
limit | number | No | 20 | Number of items to return |
cursor | string | No | - | Pagination cursor |
{
data: Array<{
id: string
toolType: string
modelId: string
input: object
output: {
url?: string
// ... other output data
}
status: "completed" | "failed"
createdAt: Date
}>
nextCursor: string | null
}