Python
import requests url = "https://{FUSION HOST}/api/ai/ml-models/{modelId}/prediction" payload = {} headers = {"Content-Type": "application/json"} response = requests.post(url, json=payload, headers=headers) print(response.json())
{}
Get a prediction from the specified model.
OK
Was this page helpful?