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}상태 및 키워드 필터로 페이지별 생성 기록을 가져옵니다.
요청 헤더
Authorization: Bearer YOUR_API_KEY요청 매개변수
| 이름 | 타입 | 필수 | 기본값 | 옵션 | 설명 |
|---|---|---|---|---|---|
| page | number | 아니요 | 1 | - | 기록 페이지 번호. |
| limit | number | 아니요 | 12 | - | 히스토리 목록 페이지 크기 (1-50). |
| status | string | 아니요 | all | all, pending, success, failed | 히스토리 리스트용 상태 필터. |
| q | string | 아니요 | "" | - | 히스토리를 검색하기 위한 선택적 키워드. |
요청
curl -X GET "https://freesoragenerator.com/api/ai-studio/video-history?page=1&limit=12&status=all" \
-H "Authorization: Bearer YOUR_API_KEY"응답 예시
{
"success": true,
"data": {
"records": [],
"total": 0,
"totalPages": 1,
"page": 1
}
}오류 예시
{
"success": false,
"error": "Failed to load AI Studio generation history"
}