OPENCLAW + RECRAFT

OpenClaw에서 Recraft를 사용하세요.

Recraft는 아티팩트 없이 세밀한 디테일을 복원하는 선명한 신경망 이미지 업스케일링과 머리카락 가닥과 투명한 엣지를 보존하는 정밀한 배경 제거를 제공합니다. OpenClaw 에이전트는 채팅에 사용하는 동일한 RunAPI key로 두 엔드포인트를 모두 호출합니다 — 소스 이미지 URL을 보내고, 업스케일 또는 배경 제거를 선택한 후 처리된 결과를 폴링하세요.

하나의 API key · 업스케일 + 배경 제거 · 비동기 작업 폴링
Use RunAPI to upscale an image with Recraft crisp upscale.

Requirements:
- Use the RUNAPI_API_KEY environment variable for authentication.
- Call the RunAPI upscale_image endpoint at https://runapi.ai/api/v1/recraft/upscale_image.
- Set model to "recraft-crisp-upscale".
- Pass the source image URL in source_image_url.
- The response returns a task_id. Poll the task status endpoint until the task completes, then retrieve the upscaled image URL from the result.
- For background removal, call /api/v1/recraft/remove_background with model "recraft-remove-background" instead.
curl -X POST https://runapi.ai/api/v1/recraft/upscale_image \
  -H "Authorization: Bearer $RUNAPI_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "recraft-crisp-upscale",
    "source_image_url": "https://example.com/product-photo.jpg"
  }'
{
  "task_id": "tsk_abc123",
  "status": "pending",
  "model": "recraft-crisp-upscale"
}
curl 명령어를 복사하여 테스트하세요 recraft
작동 방식

3단계로 OpenClaw에서 Recraft 사용하기

1

RunAPI 설정

아직 OpenClaw에 RunAPI를 설정하지 않았다면 OpenClaw 설정 가이드를 따르세요. RUNAPI_API_KEY 환경 변수를 설정하고 baseUrl https://runapi.ai/v1로 RunAPI를 OpenAI 호환 프로바이더로 추가하세요.

export RUNAPI_API_KEY=runapi_xxx
2

Recraft 업스케일 또는 배경 제거 호출

model을 recraft-crisp-upscale로 설정하고 source_image_url을 제공하여 upscale_image 엔드포인트에 POST 요청을 보내세요. 배경 제거의 경우 대신 model recraft-remove-background로 remove_background 엔드포인트에 POST하세요. 두 엔드포인트 모두 source_image_url만 필요합니다.

POST /api/v1/recraft/upscale_image
3

결과 폴링

두 엔드포인트 모두 status가 pending인 task_id를 반환합니다. status가 completed로 변경될 때까지 task status 엔드포인트를 폴링한 후 응답에서 처리된 이미지 URL을 가져오세요. RunAPI SDK와 CLI는 폴링을 자동으로 처리합니다.

GET /api/v1/recraft/upscale_image/tsk_abc123
파라미터

Recraft API 파라미터

파라미터 유형 설명
model string 필수. 업스케일링에는 recraft-crisp-upscale, 배경 제거에는 recraft-remove-background.
source_image_url string 필수. 처리할 소스 이미지의 URL.
callback_url string 선택 사항. 비동기 완료 알림을 위한 웹훅 URL.

OpenClaw의 Recraft란?

Recraft는 RunAPI에서 두 가지 후처리 기능을 제공합니다——세밀한 디테일을 복원하는 선명한 신경 업스케일링과 머리카락과 투명한 가장자리를 깔끔하게 처리하는 배경 제거입니다. OpenClaw agent는 동일한 RunAPI 키로 두 엔드포인트를 모두 호출합니다.

Recraft 활용 사례

디자인 에셋의 신경 업스케일링

제품 이미지·로고·디자인 에셋을 업스케일해 세밀한 디테일을 복원하며, Topaz보다 낮은 비용으로 가격에 민감한 후처리 워크플로에 적합합니다.

이커머스 제품 배경 제거

흰 배경 이커머스 리스팅이나 합성 애플리케이션을 위해 제품 사진의 배경을 제거합니다. Recraft는 머리카락·투명 재질·작은 물체를 포함한 미세한 가장자리를 처리합니다.

이미지 후처리 일괄 처리

OpenClaw agent 워크플로에서 생성 단계에 Recraft를 연결해 대량의 제품 이미지 업스케일링과 배경 제거를 자동화합니다.

FAQ

Recraft + OpenClaw 질문

OpenClaw 일반 설정

아직 설정하지 않으셨나요? OpenClaw용 RunAPI 설정 가이드로 시작하세요.

OpenClaw 설정 가이드 →

Recraft 모델 카탈로그

Recraft의 모든 변형, 가격, API 문서를 확인하세요.

Recraft 모델 →

지금 OpenClaw에서 Recraft를 사용해보세요.

무료 RunAPI key를 발급받고, OpenClaw에 프롬프트를 붙여넣어 Recraft로 이미지 업스케일링과 배경 제거를 시작하세요.