API: List Ask History
Retrieve the user’s ask history within a date range, sorted by most recent first.
Endpoint
GEThttps://podwise.ai/api/open/v1/user/ask-history
Query Parameters
date: End date inYYYY-MM-DDformat. The query covers up to this date (inclusive). Default is today.days: Number of days to look back fromdate(inclusive). Max 30. Default is7.
Response
type Response = {
success: true,
result: {
hash: string,
question: string,
// Unix timestamp in seconds
updatedAt: number,
}[],
}Last updated on