Skip to main content
Core.Today
|
Recraft빠름높음

Recraft Crisp Upscale

선명하고 또렷한 결과에 최적화된 Recraft의 빠르고 저렴한 업스케일러입니다. 이미지 하나만 넣으면 튜닝 없이 동작합니다. UI 에셋, 일러스트, 상품 이미지의 기본 선택지로 좋습니다.

14 크레딧
이미지당
선명함에 최적화된 크리스프 업스케일
튜닝 없는 단일 입력 API
빠른 처리 속도
고정 가격의 Recraft 공식 모델

지금 바로 실행해보세요

콘솔의 Playground에서 별도 코드 없이 이 모델을 즉시 테스트할 수 있어요

로그인 후 사용해보기

AI 어시스턴트에서 사용하기

이 모델의 사용법을 Claude, ChatGPT 등에 복사

빠른 시작

curl -X POST "https://api.core.today/v1/predictions" \
  -H "Content-Type: application/json" \
  -H "X-API-Key: cdt_your_api_key" \
  -d '{
  "model": "recraft-ai/recraft-crisp-upscale",
  "input": {
    "image": "https://example.com/illustration.png"
  }
}'

파라미터

파라미터타입필수기본값설명
imagestringYes-업스케일할 이미지

파일 입력 방법

이 모델의 image 파라미터에 파일을 전달하는 방법은 3가지입니다.

추천

간편 업로드 (Multipart)

POST /v1/predictions/upload에 파일을 직접 첨부합니다. 별도 업로드 과정이 필요 없습니다.

curl -X POST "https://api.core.today/v1/predictions/upload" \
  -H "X-API-Key: cdt_your_api_key" \
  -F "model=recraft-ai/recraft-crisp-upscale" \
  -F 'input={"prompt":"your prompt here"}' \
  -F "file:image=@your_file.png"

이미지 URL 전달

공개 접근 가능한 URL을 직접 전달합니다. Storage API로 업로드한 파일의 file_url도 사용 가능합니다.

{
  "model": "recraft-ai/recraft-crisp-upscale",
  "input": {
    "prompt": "your prompt here",
    "image": "https://example.com/image.jpg"
  }
}
File Upload 문서에서 Presigned URL 방식 등 더 자세한 업로드 방법을 확인하세요.

공통 파라미터

POST /v1/predictions 요청 시 사용되는 공통 파라미터입니다.

파라미터타입필수기본값설명
modelstringYes-모델 식별자
inputobjectYes-위 테이블의 모델별 파라미터를 포함하는 객체
output_folderstringNo-결과물 저장 폴더 경로 (최대 256자, '..' 사용 불가)
webhook_urlstringNo-완료 시 호출할 Webhook URL
is_publicbooleanNofalsetrue 시 결과물을 영구 공개 URL로도 제공

예제

일러스트 크리스프 업스케일

일러스트를 한 번에 선명하게 확대

curl -X POST "https://api.core.today/v1/predictions" \
  -H "Content-Type: application/json" \
  -H "X-API-Key: cdt_your_api_key" \
  -d '{
  "model": "recraft-ai/recraft-crisp-upscale",
  "input": {
    "image": "https://example.com/illustration.png"
  }
}'

팁 & 모범 사례

1또렷한 경계가 중요한 일러스트·로고·텍스트에 강합니다
2조정할 파라미터가 없어 자동화 파이프라인에 이상적입니다
3사진의 디테일 재창조는 Clarity Upscaler, 얼굴은 GFPGAN/CodeFormer를 쓰세요

사용 사례

일러스트·벡터풍 아트 업스케일
UI 에셋 확대
상품 이미지 선명화
로고·텍스트 위주 이미지 업스케일
에셋 파이프라인 대량 처리