注册匿名 Agent 试用
POST /agent/anonymous-register
注册匿名 Agent 试用
REST API 概览 · OpenAPI JSON · OpenAPI YAML
接口契约
| 稳定性 | 认证 | 费用 | Operation ID |
|---|---|---|---|
| 已发布 | 无需认证 | 免费 | agent_anonymous_register_api_v1_agent_anonymous_register_post |
参数
此操作没有路径或查询参数。
请求体
Schema: AgentAnonymousRegisterRequest
| 名称 | 必填 | 类型 | 说明 |
|---|---|---|---|
agent_name | 否 | string | null | Optional agent display name |
可运行示例
curl --request POST \
--url "https://qveris.ai/api/v1/agent/anonymous-register" \
--header 'Content-Type: application/json' \
--data '{
"agent_name": "demo-agent"
}'
const response = await fetch("https://qveris.ai/api/v1/agent/anonymous-register", {
method: "POST",
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify({
"agent_name": "demo-agent"
}),
})
if (!response.ok) throw new Error(`QVeris request failed: ${response.status}`)
console.log(await response.json())
import json
import requests
response = requests.request(
"POST",
"https://qveris.ai/api/v1/agent/anonymous-register",
json=json.loads(r'''{
"agent_name": "demo-agent"
}'''),
timeout=30,
)
response.raise_for_status()
print(response.json())
响应
| 状态码 | 含义 | Schema |
|---|---|---|
200 | Successful Response | APIResponse_AgentAnonymousRegisterResponse_ |
422 | Validation Error | HTTPValidationError |
429 | Too Many Requests | PublicApiError |
成功响应示例
{
"status": "success",
"message": "Anonymous agent trial created. The key is shown once; use the claim code to bind a formal email before expiry.",
"status_code": 0,
"data": {
"agent_id": "3c0b2d6e-4f6a-4f4a-8b4b-5c5d6e7f8a9b",
"agent_name": "demo-agent",
"api_key": "sk-trial-shown-once",
"trial_credits": 50,
"claim_code": "claim-code-123456",
"expires_at": "2026-07-31T12:00:00Z"
}
}
精确契约
- 稳定版 JSON: OpenAPI JSON
- 稳定版 YAML: OpenAPI YAML
- 版本化 JSON: OpenAPI v1 JSON
- 版本化 YAML: OpenAPI v1 YAML
