Skip to main content
GET
/
ai
/
by_name
/
{experiment_name}
Get Experiment By Name
curl --request GET \
  --url 'https://api.example.com/ai/by_name/{experiment_name}?HAIQU_API_KEY='
{
  "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",
  "url": ""
}

Authorizations

HAIQU_API_KEY
string
query
required

Path Parameters

experiment_name
string
required

Response

Successful Response

Represent an experiment with MCP-specific context metadata.

description and creation_date remain optional for compatibility with legacy database rows.

Attributes: description: Plain-text experiment description. Optional for legacy rows that still store NULL. creation_date: Experiment creation timestamp. Optional for legacy rows that still store NULL. context: Additional plain-text guidance for AI agents consuming the experiment. url: Dashboard URL for the experiment when available.

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
url
string | null
default:""