Retrieve an Agent
Guide to retrieving an Agent in the Fetch Hive API.
Retrieve details for a specific agent
Authorizations
Path parameters
idstringRequired
Agent token
Responses
200
Successful response
application/json
default
Error
application/json
get
GET /v1/agents/{id} HTTP/1.1
Host: api.fetchhive.com
Authorization: YOUR_API_KEY
Accept: */*
{
"agent": {
"id": 1,
"name": "text",
"token": "text",
"custom_model": "text",
"llm_model": "text",
"temperature": 1,
"reasoning_effort": "low",
"max_token": 1,
"max_thinking_token": 1,
"instruction_prompt": "text",
"model_type": "text",
"provider": "text",
"google_search_tool": "text",
"history_tool": "text",
"status": "text",
"mcp_tools": [
{
"id": 1,
"token": "text",
"generated_at": "2025-09-18T04:03:34.255Z",
"status": "text",
"mcp_type": "google_search",
"is_enabled": true,
"is_disabled": true,
"data_set": {
"id": 1,
"name": "text",
"token": "text",
"namespace": "text",
"search_type": "text",
"search_score_threshold": 1,
"search_chunk_limit": 1
}
}
]
}
}
Last updated
Was this helpful?