Skip to main content
GET
/
agent
/
{uuid}
Get Agent
curl --request GET \
  --url https://geekai.dev/api/v1/agent/{uuid} \
  --header 'Authorization: Bearer <token>'
{
  "uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "name": "<string>",
  "logo": "<string>",
  "desc": "<string>",
  "status": "initializing",
  "model": "<string>",
  "chat_level": 123,
  "interneted": 123,
  "stream": 123,
  "created_at": "2023-11-07T05:31:56Z"
}
After the agent is successfully created or updated, you can check the agent training status through the query interface.

Authorizations

Authorization
string
header
required

token

Path Parameters

uuid
string<uuid>
required

uuid

Response

successful response

uuid
string<uuid>
required

agent UUID

name
string
required

agent name

desc
string
required

agent description

status
enum<string>
required

agent status

Available options:
initializing,
ready,
training,
error

agent logo URL

model
string

chat model

chat_level
integer

chat level

interneted
integer

enable internet access

stream
integer

enable stream output

created_at
string<date-time>

creation timestamp

I