curl --request GET \
--url https://api.fxn.ai/v1/predictors/{tag} \
--header 'Authorization: Bearer <token>'
{
"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": {}
}
]
}
}
curl --request GET \
--url https://api.fxn.ai/v1/predictors/{tag} \
--header 'Authorization: Bearer <token>'
{
"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": {}
}
]
}
}
Predictor tag.
Predictor tag.
Predictor name.
Predictor description.
Predictor card.
Predictor status.
Predictor access.
Predictor signature.
Show properties
Predictor inputs.
Show properties
Parameter name.
Parameter data type.
Parameter description.
Whether the parameter is optional.
Parameter range for numeric parameters.
Parameter default value.
Parameter JSON schema.
This is only populated for list
and dict
parameters.
Predictor outputs.
Show properties
Parameter name.
Parameter data type.
Parameter JSON schema.
This is only populated for list
and dict
parameters.