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",
"instruction_prompt": "text",
"model_type": "text",
"provider": "text",
"google_search_tool": "text",
"vector_search_tool": "text",
"history_tool": "text",
"status": "text",
"data_set": {
"id": 1,
"name": "text",
"token": "text"
}
}
}
Last updated
Was this helpful?