우리는 썸네일 생성기 API를 만들었습니다 — 썸네일당 $0.010
발행: (2026년 4월 22일 PM 02:08 GMT+9)
4 분 소요
원문: Dev.to
Source: Dev.to
What It Is
텍스트 프롬프트만으로 전문가 수준의 썸네일을 생성하는 단일 API 엔드포인트입니다. 구독도, 디자인 스킬도 필요 없습니다. 썸네일을 설명하면 ~30 초 안에 PNG 파일을 받아볼 수 있습니다.
Supported Formats
- YouTube Thumbnail – 1280 × 720, 16:9
- Instagram Post – 1080 × 1920, 9:16
- LinkedIn Banner – 1200 × 624, ~1.9:1
- YouTube Short – 1080 × 1920, 9:16
Pricing
10 크레딧 = 썸네일당 $0.010.
Comparison
- Replicate FLUX.dev: $0.025 / image
- 인도 프리랜서: Rs 500‑2000 / 썸네일
- Canva Pro: $12.99 / month
- Thumbly AI: $29 / month
Quick Example
curl -X POST https://api.pixelapi.dev/v1/thumbnail/generate \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"prompt": "A chef holding a pizza with melted cheese, dramatic lighting, dark moody background",
"preset": "youtube",
"style": "vibrant"
}'
~30 초 정도 기다린 뒤 상태 엔드포인트를 폴링하고 PNG를 다운로드합니다.
Python Example
import requests, time
API_KEY = "YOUR_API_KEY"
BASE_URL = "https://api.pixelapi.dev"
def generate_thumbnail(prompt, preset="youtube", style="vibrant"):
resp = requests.post(
f"{BASE_URL}/v1/thumbnail/generate",
headers={"Authorization": f"Bearer {API_KEY}"},
json={"prompt": prompt, "preset": preset, "style": style}
)
resp.raise_for_status()
gen_id = resp.json()["generation_id"]
while True:
time.sleep(2)
status = requests.get(
f"{BASE_URL}/v1/thumbnail/{gen_id}",
headers={"Authorization": f"Bearer {API_KEY}"}
).json()
if status["status"] == "completed":
return status["output_url"]
if status["status"] == "failed":
raise Exception(status["error_message"])
url = generate_thumbnail(
prompt="A chef holding a pizza with melted cheese, dramatic lighting",
preset="youtube", style="vibrant"
)
print(f"Done: {url}")
Style Options
| Style | Best For |
|---|---|
| vibrant | Food, fashion, lifestyle (default) |
| bold | Gaming, fitness, motivation |
| cinematic | Travel vlogs, short films |
| dark | Tech reviews, horror, thriller |
| minimal | Business, education, clean aesthetics |
What We Tested Internally
출시 전 20개 이상의 생성 테스트를 진행했습니다.
- Food thumbnails: 8.5/10 – 선명한 색감, 명확한 주제
- Fashion thumbnails: 8‑9/10 – 강렬한 구도, 뛰어난 색상 블록
- Gaming thumbnails: 7.5/10 – RGB 네온 효과가 잘 구현됨
- Indian/festival themes: 9/10 – SDXL이 인도 색 팔레트를 자연스럽게 처리
Use Cases
- 일일 업로드를 하는 유튜버 – API를 통한 배치 생성
- 소셜 미디어 매니저 – 하나의 API로 Instagram, LinkedIn, YouTube 썸네일 제작
- SaaS 툴 – 비디오 파이프라인에 통합
- 인도 리셀러 – 디자인 작업 없이 대량 썸네일 생성
What You Get on Signup
- 50 free credits (무료 썸네일 5개)
- $10: 10,000 크레딧 = 1,000 썸네일
- $50: 60,000 크레딧 = 6,000 썸네일
프로 가격 기준: 썸네일당 약 Rs 8.33.
Resources
- API Docs
- Dashboard
Disclosure
저는 PixelAPI를 운영하고 있습니다. 자체 GPU 인프라 덕분에 한계 비용이 거의 0에 가깝게 되어서 직접 만들게 되었습니다.