← 문서 목록

GET /v1/outputs/{requestId}

완료된 요청의 결과는 24시간 동안 조회할 수 있습니다. API 키(또는 로그인 세션)가 필요하며 본인에게 허용된 요청만 조회할 수 있습니다.

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

{
  "id": "cm...",
  "model": "everyais/imagen-4-generate-001",
  "endpoint": "/v1/images/generations",
  "status": "COMPLETED",
  "inputTokens": 0,
  "outputTokens": 0,
  "imageCount": 1,
  "totalCost": 0.04,
  "latencyMs": 1200,
  "urls": ["https://..."],
  "createdAt": "2026-07-30T01:23:45.000Z"
}

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

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