Models
Last updated
Was this helpful?
Last updated
Was this helpful?
The v1/models
endpoint is used to make predictions using a trained model. Details on training a model via the API can be found at the . Use GET
to obtain a list of all models. Then use the model ID to POST
data to that model and receive predictions.
GET
https://api.akkio.com/v1/models
api_key*
string
Your api key, accessible from https://app.akkio.com/team-settings
POST
https://api.akkio.com/v1/models
api_key*
string
Your api key, accessible from https://app.akkio.com/team-settings
data*
array
Data in the format of: [{'field name 1': 'value 1', 'field name 2': 0}, {...}, ...]
id*
string
The ID of the model to make the prediction with
DELETE
https://api.akkio.com/v1/models
id*
string
The ID of the model to be deleted
api_key*
string
Your api key, accessible from https://app.akkio.com/team-settings