Authentication, input and response

Fetch the condition score

Post url to retrieve the condition score of bathrooms & kitchens.

POST https://api.altum.ai/condition-score/url

Headers

NameTypeDescription

x-api-key*

string

API Key from Altum. Create one via Mopsus(https://mopsus.altum.ai)

Content-Type

string

application/json

Request Body

NameTypeDescription

url*

string

The public URL of the image you wish to send int he request

{
	"Output": {
		"label": "bathroom",
		"confidence": "98.17",
		"condition_score": "4.09"
	}
}

Upload image file to retrieve the condition score of bathrooms & kitchens.

POST https://api.altum.ai/condition-score/img

Headers

NameTypeDescription

x-api-key*

string

API Key from Altum. Create one via Mopsus(https://mopsus.altum.ai)

Content-Type

string

multipath/form-data

Request Body

NameTypeDescription

image*

object

The image to be sent in the request must be uploaded as a multipath/form-data type.

{
	"Output": {
		"label": "bathroom",
		"confidence": "98.17",
		"condition_score": "4.09"
	}
}

FREE Ping for availability

Post url to confirm if the image contains a kitchen or a bathroom.

POST https://api.altum.ai/condition-score/url/ping

This endpoint enables you to verify whether an image features a bathroom or kitchen before requesting their condition scores. This preliminary check is necessary given that the Condition Score API cannot generate scores if the image does not depict a kitchen or a bathroom.

Headers

NameTypeDescription

x-api-key*

string

API Key from Altum. Create one via Mopsus(https://mopsus.altum.ai)

Content-Type

string

application/json

Request Body

NameTypeDescription

url*

string

The public URL of the image you wish to send int he request

{
    "Output": {
    "label": "Bathroom or Kitchen image detected",
    "confidence": "98.17"
    }        
}

Upload image file to confirm if the image contains a kitchen or a bathroom.

POST https://api.altum.ai/condition-score/img/ping

This endpoint enables you to verify whether an image features a bathroom or kitchen before requesting their condition scores. This preliminary check is necessary given that the Condition Score API cannot generate scores if the image does not depict a kitchen or a bathroom.

Headers

NameTypeDescription

x-api-key*

string

API Key from Altum. Create one via Mopsus(https://mopsus.altum.ai)

Content-Type

string

multipath/form-data

Request Body

NameTypeDescription

image*

object

The image to be sent in the request must be uploaded as a multipath/form-data type.

{
    "Output": {
    "label": "Bathroom or Kitchen image detected",
    "confidence": "98.17"
    }        
}

Request body

Example request

{"url":"https://www.rawsonhomes.com.au/-/media/rawson-homes/blogs-external-banner-images/blog-articles/2020-blogs/september-2020/facades/narraweena-nara-facade.ashx"}

Last updated