Skip to main content
GET
/
agents
/
{agent_id}
Python
from meibel import MeibelClient

client = MeibelClient(api_key="your-api-key")

result = client.agents.get("agent_id_value")
print(result)
{
  "id": "<string>",
  "name": "<string>",
  "display_name": "<string>",
  "catalog_urn": "<string>",
  "version": "<string>",
  "type": "<string>",
  "llm_model": "<string>",
  "fallback_models": [
    "<string>"
  ],
  "datasources": [
    "<string>"
  ],
  "instructions": "<string>",
  "tools": [
    {}
  ],
  "artifacts": [
    "<string>"
  ],
  "confidence_configs": [
    "<string>"
  ],
  "temperature": 123,
  "tags": [
    "<string>"
  ],
  "parent_version": "<string>",
  "description": "<string>",
  "max_tokens": 123,
  "icon": "<string>",
  "created_by": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "last_execution_status": "<string>",
  "last_execution_time": "2023-11-07T05:31:56Z"
}

Documentation Index

Fetch the complete documentation index at: https://docs.meibel.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Meibel-API-Key
string
header
required

Path Parameters

agent_id
string
required

Response

Successful Response

id
string
required
name
string
required
display_name
string
required
catalog_urn
string
required
version
string
required
type
string
required
llm_model
string
required
fallback_models
string[]
required
datasources
string[]
required
instructions
string
required
tools
Tools · object[]
required
artifacts
string[]
required
confidence_configs
string[]
required
temperature
required
tags
string[]
required
parent_version
string | null
description
string | null
max_tokens
integer | null
icon
string | null
created_by
string | null
created_at
string<date-time> | null
last_execution_status
string | null
last_execution_time
string<date-time> | null