Object Tracking Query
Object Tracking Query API
Tracking multiple objects in one query
Request body fields
Localize an object from a single image. Provide the image plus the
camera intrinsics (fx, fy, px, py) and the image width/height.
Returns the object's pose when found.
JWT token obtained from the authentication endpoint.
The query image.
One object code, or an array of 1–10 object codes to match against.
Focal length x (pixels).
Focal length y (pixels).
Principal point x (pixels).
Principal point y (pixels).
Image width (pixels).
Image height (pixels).
Whether the returned pose should be in a right-handed coordinate system.
Query processed. Check poseFound.
Bad Request. Missing/invalid fields.
Unauthorized. Invalid or expired token.
Forbidden.
Object not found.
Internal Server Error.
POST /v1/vps/object/query HTTP/1.1
Host: api.multiset.ai
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: multipart/form-data
Accept: */*
Content-Length: 113
{
"queryImage": "binary",
"objectCode": "text",
"fx": 1,
"fy": 1,
"px": 1,
"py": 1,
"width": 1,
"height": 1,
"isRightHanded": true
}{
"poseFound": true,
"position": {
"x": 1,
"y": 1,
"z": 1
},
"rotation": {
"x": 1,
"y": 1,
"z": 1,
"w": 1
},
"confidence": 1,
"objectCodes": [
"text"
]
}Sample Response — pose found
Sample Response — pose not found
List Objects API
List the tracked objects in your account, with pagination and optional search.
JWT token obtained from the authentication endpoint.
Page number.
Page size.
Optional search string.
Paginated list of objects.
Bad Request.
Unauthorized. Invalid or expired token.
Internal Server Error.
GET /v1/vps/object HTTP/1.1
Host: api.multiset.ai
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"data": [
{}
],
"currentPage": 1,
"totalPages": 1,
"totalCount": 1
}Last updated
Was this helpful?

