AI Studio API
Generation history
Read paginated generation history with status and keyword filters.
API playground
Send a real request to this site and inspect the HTTP response immediately.
Response
Send a request to view its response here.GET
/api/ai-studio/video-history?page={page}&limit={limit}&status={status}&q={q}Dapatkan riwayat generasi yang dipaginasi dengan filter status dan kata kunci.
Header Permintaan
Authorization: Bearer YOUR_API_KEYParameter Permintaan
| Nama | Jenis | Diperlukan | Default | Opsi | Deskripsi |
|---|---|---|---|---|---|
| page | number | Tidak | 1 | - | Nomor halaman sejarah. |
| limit | number | Tidak | 12 | - | Ukuran halaman untuk daftar riwayat (1-50). |
| status | string | Tidak | all | all, pending, success, failed | Filter status untuk daftar riwayat. |
| q | string | Tidak | "" | - | Kata kunci opsional untuk mencari riwayat Anda. |
Permintaan
curl -X GET "https://freesoragenerator.com/api/ai-studio/video-history?page=1&limit=12&status=all" \
-H "Authorization: Bearer YOUR_API_KEY"Contoh Tanggapan
{
"success": true,
"data": {
"records": [],
"total": 0,
"totalPages": 1,
"page": 1
}
}Contoh Kesalahan
{
"success": false,
"error": "Failed to load AI Studio generation history"
}