Pollojourney V8.2
Pollo AI
AI 이미지 생성이미지 AI 변환$0,03 / 이미지 당
PolloJourney V8.2, daha ayırt edici ve güvenilir görseller için cesur estetiği, kusursuz görüntü kalitesini ve daha akıllı kişiselleştirmeyi bir araya getiriyor.
입력
모드
가격을 확인하려면 필수 입력란을 모두 작성하세요.
Text To Image · 1k
생성 결과
대기 중| 해상도 | 유형 | 가격 |
|---|---|---|
| 1K | 이미지 AI 변환 | $0,03 |
| AI 이미지 생성 | $0,03 | |
| 2K | 이미지 AI 변환 | $0,045 |
| AI 이미지 생성 | $0,045 |
엔드포인트
POST
https://pollo.ai/api/platform/v1/generation/pollo-ai/pollojourney-v8-2-image/image모드
입증
API 키를 x-api-key 요청 헤더에 포함시켜 전달하세요.
x-api-key: YOUR_API_KEYAPI 키 보기작업 제출
모델 생성 작업을 생성합니다.
요구
curl -X POST 'https://pollo.ai/api/platform/v1/generation/pollo-ai/pollojourney-v8-2-image/image' \
-H 'Content-Type: application/json' \
-H 'x-api-key: YOUR_API_KEY' \
-d '{
"input": {
"prompt": "A cinematic shot of a golden retriever running through a field of sunflowers at sunset, warm rim light, shallow depth of field",
"aspectRatio": "1:1",
"resolution": "1k"
}
}'응답(200)
{
"taskId": "task_01HZ7Q2V8J3E4T6Y9K0M1N2P3",
"status": "pending"
}상태 확인
생성이 완료될 때까지 작업 상태 엔드포인트를 주기적으로 확인합니다.
HTTP 요청
GET /api/platform/v1/generation/{taskId}/status HTTP/1.1
Host: pollo.ai
x-api-key: YOUR_API_KEY응답(200)
{
"taskId": "task_01HZ7Q2V8J3E4T6Y9K0M1N2P3",
"credit": 12,
"costUsd": 0.12,
"generations": [
{
"id": "generation_01",
"createdDate": "2026-07-13T07:00:00.000Z",
"updatedDate": "2026-07-13T07:00:12.000Z",
"status": "succeeded",
"failMsg": null,
"url": "https://example.com/output.mp4",
"mediaType": "video"
}
]
}Webhook
선택적으로, 작업 성공 또는 실패 시 콜백을 수신하기 위해 webhookUrl을 포함할 수 있습니다.
선택적 요청 필드
{
"input": {
"prompt": "A cinematic shot of a golden retriever running through a field of sunflowers at sunset, warm rim light, shallow depth of field",
"aspectRatio": "1:1",
"resolution": "1k"
},
"webhookUrl": "https://example.com/webhooks/pollo"
}개요
선택한 엔드포인트 및 모드에 대한 입력 필드입니다.
| 필드 | 유형 | 필수의 | 화면 설명 |
|---|---|---|---|
| prompt | string | 예 | Text prompt describing the content to generate. |
| seed | number | 아니요 | Random seed for reproducible generation. |
| aspectRatio | string | 아니요 | Output aspect ratio, as width:height (e.g. 16:9). |
| resolution | string | 아니요 | Output resolution of the generated media (e.g. 720p, 1080p, 2K, 4K). Values are case-insensitive. |
오류
일반적인 공개 API 응답 코드.
- 400
- 잘못된 입력 또는 모델 제약 조건입니다.
- 401
- API 키가 없거나 유효하지 않습니다.
- 403
- API 키로는 접근 권한이 없습니다.
- 404
- 모델 또는 작업을 찾을 수 없습니다.
Model dokümantasyonu yakında yayınlanacak.