Get ground truth results
import requests
url = "https://{FUSION HOST}/api/experiments/{id}/groundTruth"
headers = {"Authorization": "Basic <encoded-value>"}
response = requests.get(url, headers=headers)
print(response.text)Get ground truth results
Get the ground truth results for an experiment as JSON
GET
/
experiments
/
{id}
/
groundTruth
Get ground truth results
import requests
url = "https://{FUSION HOST}/api/experiments/{id}/groundTruth"
headers = {"Authorization": "Basic <encoded-value>"}
response = requests.get(url, headers=headers)
print(response.text)Authorizations
Basic authAPI key
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Path Parameters
The experiment ID.
Query Parameters
A limit on the number of queries to return per entry.
A limit on the number of entries to return.
Response
200
OK
Was this page helpful?
⌘I