Embeddings
Get Embeddings With Images
Embeddings
Get Embeddings With Images
Get embeddings for a list of images.
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
Response
200
application/json
Successful Response
The response is of type object
.
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
]
]
}