Noxovision API (0.1.0)

Download OpenAPI specification:

noxovision Support: support@noxo.dev

Public API for asynchronous image and video analysis.

Request

Submit new analysis requests

Submit a new video analysis request

Accepts a binary video file and enqueues it for analysis. Returns 202 Accepted with a Location header to poll for results.

Authorizations:
apiKeyAuth
header Parameters
Max-Processing-Time
integer >= 0

Upper-bound on server-side processing time in seconds. If the job exceeds this limit the server cancels it and returns an error. If set to 0, an infinite time is accepted.

Request Body schema: application/octet-stream
required
string <binary>

The binary video to be processed

Responses

Response samples

Content type
application/json
{
  • "job_id": "vid_12345"
}

Submit a batch of images for analysis (JSON base64)

Accepts a JSON payload containing one or more base64-encoded images. Returns 202 Accepted with a Location header to poll the batch status and per-item results.

Notes:

  • The images[].data_base64 field must be raw base64 (no data URI prefix).
  • The server may reject items that exceed size/format limits and mark them failed.
Authorizations:
apiKeyAuth
header Parameters
Max-Processing-Time
integer >= 0

Upper-bound on server-side processing time in seconds. If the job exceeds this limit the server cancels it and returns an error. If set to 0, an infinite time is accepted.

Request Body schema: application/json
required
required
Array of objects non-empty

One or more images to analyze

Responses

Request samples

Content type
application/json
{
  • "images": [
    ]
}

Response samples

Content type
application/json
{
  • "job_id": "img_batch_abc"
}

Results

Retrieve analysis results

Get the results of a video analysis

Authorizations:
apiKeyAuth
path Parameters
job_id
required
string
Example: vid_12345

Responses

Response samples

Content type
application/json
{
  • "job_id": "vid_12345",
  • "status": "finished",
  • "result": {
    }
}

Get the results of an image analysis

Authorizations:
apiKeyAuth
path Parameters
job_id
required
string
Example: img_batch_abc

Responses

Response samples

Content type
application/json
{
  • "job_id": "img_batch_abc",
  • "status": "finished",
  • "items": [
    ]
}

Status

System-level status and capacity

Get system latency per media unit

Returns the observed processing latency per media unit:

  • For video: latency per second of video time.
  • For image: latency per individual image in a batch.
Authorizations:
apiKeyAuth
query Parameters
mediaType
required
string
Enum: "video" "image"

Media type whose latency is requested

Responses

Response samples

Content type
application/json
Example
{
  • "media_type": "image",
  • "unit": "image",
  • "latency_ms_per_unit": 120
}

Get current system-wide capacity utilization

Authorizations:
apiKeyAuth

Responses

Response samples

Content type
application/json
{
  • "used_system_capacity": 0.63
}