GET
/
api
/
ml-models
/
List available AI Filters (ML models)
curl --request GET \
  --url https://backend.tensorpix.ai/api/ml-models/ \
  --header 'Authorization: <api-key>'
{
  "count": 123,
  "next": "http://api.example.org/accounts/?page=4",
  "previous": "http://api.example.org/accounts/?page=2",
  "results": [
    {
      "id": 123,
      "name": "<string>",
      "task": 1,
      "cost_weight": 123,
      "upscale_factor": 123,
      "fps_boost_factor": 123,
      "priority": 123,
      "max_resolution": 123
    }
  ]
}

Authorizations

Authorization
string
header
required

Token-based authentication with required prefix "Token"

Query Parameters

page
integer

A page number within the paginated result set.

page_size
integer

Number of results to return per page.

Response

200
application/json

The response is of type object.