应用配置
获取应用元数据
获取应用的元数据,包括工具图标和其他配置详情。
GET
获取应用元数据
Last modified on June 25, 2026
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
获取应用的元数据,包括工具图标和其他配置详情。
curl --request GET \
--url https://{api_base_url}/meta \
--header 'Authorization: Bearer <token>'{
"tool_icons": {
"dalle3": "https://example.com/icons/dalle3.png",
"calculator": {
"background": "#4A90D9",
"content": "🧮"
}
}
}API Key 认证。对于所有 API 请求,请在 Authorization HTTP 头中包含您的 API Key,并加上 Bearer 前缀。示例:Authorization: Bearer {API_KEY}。强烈建议将 API Key 存储在服务端,不要在客户端共享或存储,以避免 API Key 泄漏导致严重后果。
成功获取应用元数据。
工具图标。键为工具名称。
Show child attributes
Was this page helpful?
curl --request GET \
--url https://{api_base_url}/meta \
--header 'Authorization: Bearer <token>'{
"tool_icons": {
"dalle3": "https://example.com/icons/dalle3.png",
"calculator": {
"background": "#4A90D9",
"content": "🧮"
}
}
}