Palette
Photo Developer PlatformVideo Developer PlatformPalette AppPalette Video Colorization (via Neural Love)
  • Palette API & No-code Tools
  • ๐Ÿ‘‹Introduction
    • Key features
    • The AI colorization engine
  • ๐Ÿ“ธImage Processing
    • Subscription plans
    • Bulk Processing with Google Colab and Google Drive
    • API Demo Usage with Google Colab
    • Image python snippets
    • Settings visualized
  • ๐Ÿ“ฝ๏ธVideo Processing
    • Subscription plans
    • Video Colorization with Google Colab
    • Video python snippets
  • ๐Ÿ› ๏ธExtra resources
    • API reference
      • Colorize image with reference image
      • Colorize image with auto prompt
      • Colorize image with auto prompt base64
      • Colorize video frame with prompt
      • Colorize video frame with reference image
      • Generate video frame prompt
      • Generate image prompt
    • Specification
    • Other resources
Powered by GitBook
On this page
  1. Extra resources
  2. API reference

Colorize image with auto prompt

PreviousColorize image with reference imageNextColorize image with auto prompt base64

Last updated 2 years ago

๐Ÿ› ๏ธ

Colorize Image With Auto Prompt

post

This is my description of the API endpoint

Body
imagestring ยท binaryRequired
resolutionstringOptionalDefault: watermarked-sd
promptstringOptionalDefault: ""
standard_filter_idstringOptionalDefault: 1
artistic_filter_idstringOptionalDefault: 0
raw_captionsstringOptionalDefault: false
pre_fixstringOptionalDefault: ""
post_fixstringOptionalDefault: ""
auto_colorstringOptionalDefault: true
white_balancestringOptionalDefault: false
temperaturestringOptionalDefault: -0.1
saturationstringOptionalDefault: 1.1
Responses
200
Successful Response
application/json
422
Validation Error
application/json
post
POST /colorize_image_with_auto_prompt HTTP/1.1
Host: 
Content-Type: multipart/form-data
Accept: */*
Content-Length: 251

{
  "image": "binary",
  "resolution": "text",
  "prompt": "text",
  "standard_filter_id": "text",
  "artistic_filter_id": "text",
  "raw_captions": "text",
  "pre_fix": "text",
  "post_fix": "text",
  "auto_color": "text",
  "white_balance": "text",
  "temperature": "text",
  "saturation": "text"
}
{
  "content": "binary",
  "media_type": "text"
}