跳转到主要内容
POST
/
api
/
open-api
/
v1
/
images
/
understand
Understand Image
curl --request POST \
  --url https://www.jimmyai.cn/api/open-api/v1/images/understand \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "model": "<string>",
  "contents": [
    {
      "role": "<string>",
      "parts": [
        {
          "text": "<string>"
        }
      ]
    }
  ]
}
'
{
  "code": "20000",
  "msg": "ok",
  "data": {
    "candidates": [
      {}
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.jimmyai.cn/llms.txt

Use this file to discover all available pages before exploring further.

授权

Authorization
string
header
必填

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

请求体

application/json
model
string
必填

Model name (e.g., gemini-3.5-flash)

contents
object[]
必填

Dialogue context content

响应

200 - application/json

Image understood successfully

code
string
示例:

"20000"

msg
string
示例:

"ok"

data
object