GET
/
accounts
/
agent
/
{agentId}
curl --request GET \
  --url https://server.ownid.com/{appId}/accounts/agent/{agentId} \
  --header 'Authorization: Bearer <token>'
{
  "agentId": "agent_12345",
  "agentType": "browser-using",
  "status": "active",
  "createdAt": "2025-01-01T12:34:56.000Z",
  "updatedAt": "2025-02-02T09:00:00.000Z",
  "metadata": {
    "notes": "This is a high-privilege AI agent."
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

Authorization
string
required

Bearer Token for admin authorization

Path Parameters

agentId
string
required

Unique identifier for the AI agent

Response

200
application/json
Successful retrieval of agent data
agentId
string

The unique identifier for the AI agent

Example:

"agent_12345"

agentType
string

The type of agent

Example:

"browser-using"

status
string

Current status of the AI agent

Example:

"active"

createdAt
string

Date and time the agent was created

Example:

"2025-01-01T12:34:56.000Z"

updatedAt
string

Date and time the agent was last updated

Example:

"2025-02-02T09:00:00.000Z"

metadata
object

Additional metadata about the agent

Example:
{
  "notes": "This is a high-privilege AI agent."
}