v1

latestOpenAPI 3.0.32026-07-26451985.7 KB

image-feature-extraction

Extract features from images for tasks like object detection, image classification, and image retrieval

post/models/v2/nomic-ai/nomic-embed-vision-v1

Request body

urlstring required
base64string

Example request

{
  "url": "https://as1.ftcdn.net/v2/jpg/03/03/55/82/1000_F_303558268_YNUQp9NNMTE0X4zrj314mbWcDHd1pZPD.jpg",
  "base64": "data:image/jpg;base64,...BASE_64_GOES_HERE (Only use this is you are not using a url)"
}

Response

Successful image-feature-extraction response.

errorstring nullable required

Null on success; otherwise an error message.

Example response

{
  "output": [
    [
      0.23,
      0.45,
      0.89,
      0.67
    ],
    [
      0.23,
      0.45,
      0.89,
      0.67
    ]
  ]
}