Authentication, input and response

IMG

POST https://api.altum.ai/labelling/img

This endpoint allows you to upload an image for labeling.

Headers

Request Body

{
	"detail": [
		{
			"loc": [
				"body",
				"image"
			],
			"msg": "field required",
			"type": "value_error.missing"
		}
	]
}

URL

POST https://api.altum.ai/labelling/url

Instead of uploading the image file, this endpoint allows you to rather send the public URL of the image you want labelled.

Headers

Request Body

{
	"detail": [
		{
			"loc": [
				"body",
				"image"
			],
			"msg": "field required",
			"type": "value_error.missing"
		}
	]
}

Request body

Example request

{"url":"https://cloud.funda.nl/valentina_media/149/998/977_1440x960.jpg"}

Last updated