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}Get paginated generation history with status and keyword filters for generated assets.
Request Headers
Authorization: Bearer YOUR_API_KEYRequest Parameters
| Name | Type | Required | Default | Options | Description |
|---|---|---|---|---|---|
| page | number | No | 1 | - | History page number. |
| limit | number | No | 12 | - | Page size for history list (1-50). |
| status | string | No | all | all, pending, success, failed | Status filter for history list. |
| q | string | No | "" | - | Optional keyword for searching your history. |
Request
curl -X GET "https://freesoragenerator.com/api/ai-studio/video-history?page=1&limit=12&status=all" \
-H "Authorization: Bearer YOUR_API_KEY"Response Example
{
"success": true,
"data": {
"records": [],
"total": 0,
"totalPages": 1,
"page": 1
}
}Error Example
{
"success": false,
"error": "Failed to load AI Studio generation history"
}