GET
/
v1
/
predictors
/
{tag}
Retrieve a Predictor
curl --request GET \
  --url https://api.muna.ai/v1/predictors/{tag}
{
  "tag": "<string>",
  "owner": {
    "username": "<string>",
    "created": "<string>"
  },
  "name": "<string>",
  "description": "<string>",
  "card": "<string>",
  "status": "<string>",
  "access": "<string>",
  "signature": {
    "inputs": [
      {
        "name": "<string>",
        "type": "<string>",
        "description": "<string>",
        "optional": true,
        "range": {},
        "enumeration": [
          {
            "name": "<string>",
            "value": {}
          }
        ],
        "defaultValue": {},
        "schema": {}
      }
    ],
    "outputs": [
      {
        "name": "<string>",
        "type": "<string>",
        "enumeration": [
          {
            "name": "<string>",
            "value": {}
          }
        ],
        "schema": {}
      }
    ]
  }
}

Parameters

tag
string
required
Predictor tag.

Response

tag
string
required
Predictor tag.
owner
User
required
Predictor owner.
name
string
required
Predictor name.
description
string
required
Predictor description.
card
string
Predictor card.
status
string
required
Predictor status.
access
string
required
Predictor access.
signature
Signature
required
Predictor signature.