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}Hent pagineret generationshistorik med status- og søgeordsfiltre.
Anmodningsoverskrifter
Authorization: Bearer YOUR_API_KEYForespørgselsparametre
| Navn | Type | Påkrævet | Standard | Muligheder | Beskrivelse |
|---|---|---|---|---|---|
| page | number | Nej | 1 | - | Historieside nummer. |
| limit | number | Nej | 12 | - | Sidestørrelse for historikliste (1-50). |
| status | string | Nej | all | all, pending, success, failed | Statusfilter til historikliste. |
| q | string | Nej | "" | - | Valgfrit nøgleord til at søge i din historik. |
Anmodning
curl -X GET "https://freesoragenerator.com/api/ai-studio/video-history?page=1&limit=12&status=all" \
-H "Authorization: Bearer YOUR_API_KEY"Svar eksempel
{
"success": true,
"data": {
"records": [],
"total": 0,
"totalPages": 1,
"page": 1
}
}Fejl eksempel
{
"success": false,
"error": "Failed to load AI Studio generation history"
}