GET
/
store
/
functions
curl --request GET \
  --url https://api.blaxel.ai/v0/store/functions \
  --header 'Authorization: Bearer <token>'
[
  {
    "createdAt": "<string>",
    "updatedAt": "<string>",
    "createdBy": "<string>",
    "updatedBy": "<string>",
    "configuration": [
      {
        "availableModels": [
          "<string>"
        ],
        "description": "<string>",
        "displayName": "<string>",
        "if": "<string>",
        "name": "<string>",
        "options": [
          {
            "if": "<string>",
            "label": "<string>",
            "value": "<string>"
          }
        ],
        "required": true,
        "secret": true,
        "type": "<string>"
      }
    ],
    "description": "<string>",
    "displayName": "<string>",
    "image": "<string>",
    "kit": [
      {
        "description": "<string>",
        "name": "<string>",
        "parameters": [
          {
            "description": "<string>",
            "name": "<string>",
            "required": true,
            "type": "<string>"
          }
        ]
      }
    ],
    "labels": {},
    "name": "<string>",
    "parameters": [
      {
        "description": "<string>",
        "name": "<string>",
        "required": true,
        "type": "<string>"
      }
    ]
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json
successful operation
createdAt
string

The date and time when the resource was created

updatedAt
string

The date and time when the resource was updated

createdBy
string

The user or service account who created the resource

updatedBy
string

The user or service account who updated the resource

configuration
object[]

Store function configuration

Store configuration for resources (eg: agent, function, etc)

description
string

Store function description

displayName
string

Store function display name

image
string

Store function image

kit
object[]

Store function kit

Store function kit

labels
object

Store function labels

name
string

Store function name

parameters
object[]

Store function parameters

Store function parameter