Skip to main content
POST
/
api
/
v1
/
workflows
/
run
Run Builtin Workflow
curl --request POST \
  --url https://api.intelligence.io.solutions/api/v1/workflows/run \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "text": "<string>",
  "objective": "<string>",
  "persona": {
    "name": "<string>",
    "age": 2,
    "role": "<string>",
    "style": "<string>",
    "domain_knowledge": [
      "<string>"
    ],
    "quirks": "<string>",
    "bio": "<string>",
    "lore": "<string>",
    "personality": "<string>",
    "conversation_style": "<string>",
    "description": "<string>",
    "friendliness": 123,
    "creativity": 123,
    "curiosity": 123,
    "empathy": 123,
    "humor": 123,
    "formality": 123,
    "emotional_stability": 123
  },
  "args": {
    "type": "<string>"
  },
  "agent_names": [
    "<string>"
  ]
}'
"<any>"
Beta Notice: This project is in rapid development and may not be stable for production use.
The Workflows Run API allows users to execute AI-powered workflows by submitting text input and specifying one or more AI agents to process the data. This API is designed for automation, decision-making, and data analysis tasks using multiple AI capabilities.

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Headers

token
string

JWT token

Authorization
string

io.net provided API Key

x-api-key
string

API key set by an SDK client

Body

application/json
agent_names
string[]
required
text
string | null
deprecated
objective
string | null
persona
object | null

A configuration object that describes an agent's persona or character.

args
object | null
  • ReasoningArgs
  • SummarizeArgs
  • SentimentArgs
  • ExtractEntitiesArgs
  • TranslateArgs
  • ClassificationArgs
  • ModerationArgs
  • CustomArgs

Response

Successful Response

The response is of type any.

I