← 문서 목록

GET /v1/outputs

최근 24시간 요청 결과와 presigned URL 조회.

최근 24시간 동안 완료된 요청 목록을 페이지네이션으로 조회합니다.

QueryTypeDescription
pageinteger페이지 번호, 기본 1
limitinteger페이지 크기, 기본 20 / 최대 100
{
  "outputs": [
    {
      "id": "cm...",
      "endpoint": "/v1/images/generations",
      "status": "COMPLETED",
      "totalCost": 0.04,
      "imageCount": 1,
      "urls": ["https://..."],
      "createdAt": "2026-07-30T01:23:45.000Z",
      "model": { "slug": "everyais/imagen-4-generate-001", "category": "IMAGE" }
    }
  ],
  "pagination": { "page": 1, "limit": 20, "total": 1, "pages": 1 }
}

urls 는 단건 조회와 같은 presigned URL 이며 발급 후 10분 동안 유효합니다. 결과 파일이 없는 요청(텍스트 응답 등)은 빈 배열입니다.


GET /v1/outputs/{requestId}

단일 요청의 상세와 결과 파일 URL 을 반환합니다. urls 는 10분 유효한 presigned URL 입니다.

{
  "id": "cm...",
  "model": "everyais/veo-3-1-generate-001",
  "endpoint": "/v1/videos/generations",
  "status": "COMPLETED",
  "inputTokens": 0,
  "outputTokens": 0,
  "imageCount": 1,
  "totalCost": 4.16,
  "latencyMs": 92100,
  "urls": ["https://..."],
  "createdAt": "2026-07-30T01:23:45.000Z"
}

API 키 스코프 밖의 출력은 403 insufficient_scope 입니다.

⚠️ 비디오 작업 폴링에는 이 엔드포인트를 쓰지 마세요. 비디오는 GET /v1/videos/generations/{id} 로 폴링합니다(id 공간이 다릅니다).