POST
/
images
/
clarify
图片超分接口
curl --request POST \
  --url https://geekai.co/api/v1/images/clarify \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "model": "jimeng-image-clarify-v3",
  "image": "<string>",
  "quality": "medium",
  "response_format": "url",
  "retries": 0
}'
{
  "task_id": "<string>",
  "created": 123,
  "data": [
    {
      "url": "<string>",
      "revised_prompt": "<string>"
    }
  ]
}
注意:目前仅 jimeng-image-clarify-v3 模型支持图片超分,其他模型不支持。
图片超分 API 调用示例可以参考这里:图片超分

请求/响应参数明细

Authorizations

Authorization
string
header
required

JWT认证token

Body

application/json

Response

200
application/json

成功响应

The response is of type object.