Skip to Content
Open API v1API: List Ask History

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 in YYYY-MM-DD format. The query covers up to this date (inclusive). Default is today.
  • days: Number of days to look back from date (inclusive). Max 30. Default is 7.

Response

type Response = { success: true, result: { hash: string, question: string, // Unix timestamp in seconds updatedAt: number, }[], }

Last updated on