接口
认证
Authorization: Bearer <api_key> 或 Authorization: ApiKey <api_key>。
路径参数
string
required
智能体标识符。
响应
string
智能体标识符。
string
恒为
agent。string
显示名称。
string
底层模型标识符。
string
智能体的系统指令。
array
附加到智能体的工具定义。
object
自由格式元数据。
integer
Unix 秒。
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
按标识符检索咏唱引擎云智能体,以 OpenAI beta 形态返回其模型、指令、工具与元数据。
GET /v1/agents/{agent_id}
Authorization: Bearer <api_key> 或 Authorization: ApiKey <api_key>。
agent。curl https://agent.example.com/v1/agents/ag_0198a... \
-H "Authorization: Bearer $ARIA_AGENT_KEY"
{
"id": "ag_0198a...",
"object": "agent",
"name": "support-triage",
"model": "gpt-4o-mini",
"instructions": "You are a triage agent...",
"tools": [],
"metadata": {},
"created_at": 1735000000
}
Was this page helpful?