Skip to main content
POST
/
ai
/
create_new_experiment
Create New Experiment
curl --request POST \
  --url 'https://api.example.com/ai/create_new_experiment?HAIQU_API_KEY=' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "description": "",
  "context": ""
}
'
{
  "id": "<string>",
  "name": "<string>",
  "context": "<string>",
  "description": "",
  "creation_date": "2023-11-07T05:31:56Z",
  "tags": "",
  "circuits_count": 0,
  "jobs_count": 0,
  "last_action_date": "2023-11-07T05:31:56Z"
}

Authorizations

HAIQU_API_KEY
string
query
required

Body

application/json

Experiment submit payload data model.

name
string
required
description
string | null
default:""

Experiment description stored as HTML-formatted text. Send markup such as <p>...</p> when structure or rich text is needed.

context
string | null
default:""

Response

Successful Response

Experiment model with the context for AI/MCP endpoints.

id
string
required
name
string
required
context
string
required
description
string | null
default:""
creation_date
string<date-time> | null
tags
string | null
default:""
circuits_count
integer | null
default:0
jobs_count
integer | null
default:0
last_action_date
string<date-time> | null