POST
/
embeddings
/
img
curl --request POST \
  --url https://api.bluesight.ai/embeddings/img \
  --header 'Content-Type: application/json' \
  --data '{
  "images": [
    {
      "gsd": 0.6,
      "bands": [
        "red",
        "green",
        "blue"
      ],
      "pixels": "<string>",
      "platform": "sentinel-2-l2a",
      "wavelengths": [
        0.665,
        0.56,
        0.493
      ],
      "point": [
        37.77625,
        -122.43267
      ],
      "timestamp": 1714423534
    }
  ],
  "model": "clay"
}'
{
  "embeddings": [
    [
      228,
      322.1
    ],
    [
      234,
      231.5
    ]
  ]
}

Body

application/json
images
object[]
required
model
enum<string>
default:clay

Model to use for embeddings generation

Available options:
clay,
clip

Response

200
application/json
Successful Response
embeddings
array
required

Embedding representing an area

Example:
[[228, 322.1], [234, 231.5]]