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}Obtenga un historial de generación paginado con filtros de estado y palabras clave.
Encabezados de solicitud
Authorization: Bearer YOUR_API_KEYSolicitar parámetros
| Nombre | Tipo | Requerido | Por defecto | Opciones | Descripción |
|---|---|---|---|---|---|
| page | number | No | 1 | - | Número de página de historia. |
| limit | number | No | 12 | - | Tamaño de página para la lista del historial (1-50). |
| status | string | No | all | all, pending, success, failed | Filtro de estado para la lista del historial. |
| q | string | No | "" | - | Palabra clave opcional para buscar en su historial. |
Pedido
curl -X GET "https://freesoragenerator.com/api/ai-studio/video-history?page=1&limit=12&status=all" \
-H "Authorization: Bearer YOUR_API_KEY"Ejemplo de respuesta
{
"success": true,
"data": {
"records": [],
"total": 0,
"totalPages": 1,
"page": 1
}
}Ejemplo de error
{
"success": false,
"error": "Failed to load AI Studio generation history"
}