API: Get Ask History Detail
Retrieve the full answer content for a specific ask history entry by its hash.
Endpoint
GEThttps://podwise.ai/api/open/v1/user/ask-history/[hash]
Path Parameters
hash: The answer hash (returned by the Ask endpoint or List Ask History endpoint).
Response
type Response = {
success: true,
result: {
hash: string,
question: string,
// Unix timestamp in seconds
updatedAt: number,
// The AI-generated answer with [citation:N] references
answer: string,
relatedQuestions: string[],
sources: {
title: string,
podName: string,
text: string,
startTime: number,
endTime: number,
speaker: string,
epId: string,
epSeq: number,
audioLink: string,
linkType: string,
duration: number,
transcribed: boolean,
}[],
},
}Last updated on