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}Pobierz stronicowaną historię generowania z filtrami według statusu i słów kluczowych.
Nagłówki żądania
Authorization: Bearer YOUR_API_KEYParametry żądania
| Imię | Typ | Wymagane | Domyślny | Opcje | Opis |
|---|---|---|---|---|---|
| page | number | Nie | 1 | - | Numer strony historii. |
| limit | number | Nie | 12 | - | Rozmiar strony dla listy historii (1-50). |
| status | string | Nie | all | all, pending, success, failed | Filtr statusu dla listy historii. |
| q | string | Nie | "" | - | Opcjonalne słowo kluczowe do przeszukiwania historii. |
Prośba
curl -X GET "https://freesoragenerator.com/api/ai-studio/video-history?page=1&limit=12&status=all" \
-H "Authorization: Bearer YOUR_API_KEY"Przykład odpowiedzi
{
"success": true,
"data": {
"records": [],
"total": 0,
"totalPages": 1,
"page": 1
}
}Przykład błędu
{
"success": false,
"error": "Failed to load AI Studio generation history"
}