Get model detail
curl --request GET \
--url https://{tenant}-api.mathfi.ai/api/v1/models/{modelKey} \
--header 'Authorization: Bearer <token>'import requests
url = "https://{tenant}-api.mathfi.ai/api/v1/models/{modelKey}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"modelKey": "3a1a9a83-d549-4f25-b7ed-8174e0c955de",
"version": 1,
"datasetKey": "2b0a9a83-d549-4f25-b7ed-8174e0c955cd",
"trainingJobKey": "2b0a9a83-d549-4f25-b7ed-8174e0c955cd",
"achievedPerformance": "0.85",
"createdOn": "2024-08-07T06:38:20.000Z"
}Models
Get model detail
Get model detail
GET
/
api
/
v1
/
models
/
{modelKey}
Get model detail
curl --request GET \
--url https://{tenant}-api.mathfi.ai/api/v1/models/{modelKey} \
--header 'Authorization: Bearer <token>'import requests
url = "https://{tenant}-api.mathfi.ai/api/v1/models/{modelKey}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"modelKey": "3a1a9a83-d549-4f25-b7ed-8174e0c955de",
"version": 1,
"datasetKey": "2b0a9a83-d549-4f25-b7ed-8174e0c955cd",
"trainingJobKey": "2b0a9a83-d549-4f25-b7ed-8174e0c955cd",
"achievedPerformance": "0.85",
"createdOn": "2024-08-07T06:38:20.000Z"
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Response
Model detail successful response
The models this run offers, best first, with the one predictions currently run against marked. A run keeps its top three, so this is normally three entries; fewer where attempts scored identically and collapsed, or one on a run of the older pipeline. Empty on a model that predates versioned models.
Show child attributes
Show child attributes