Passer au contenu principal
GET
/
api
/
v1
/
agents
/
{id}
Get Agent
curl --request GET \
  --url https://api.agentwallex.com/api/v1/agents/{id} \
  --header 'X-API-Key: <api-key>'
{
  "id": "<string>",
  "agent_name": "<string>",
  "agent_description": "<string>",
  "wallet": {
    "address": "<string>",
    "chain": "<string>"
  },
  "status": "active",
  "metadata": "<string>",
  "created_at": "2023-11-07T05:31:56Z"
}
Recuperez les details complets d’un agent unique, incluant l’adresse du portefeuille, le statut, les metadonnees et l’horodatage de creation.

Parametres de chemin

id
string
requis
L’identifiant unique de l’agent (par ex., agent_abc123).

Reponse

Exemple

curl -X GET https://api.agentwallex.com/api/v1/agents/agent_abc123 \
  -H "X-API-Key: awx_your_api_key"
Response
{
  "id": "agent_abc123",
  "agent_name": "research-bot",
  "agent_description": "Market research automation agent",
  "wallet": {
    "address": "0x1234567890abcdef1234567890abcdef12345678",
    "chain": "eip155:84532"
  },
  "status": "active",
  "metadata": "{\"team\":\"growth\"}",
  "created_at": "2025-06-01T10:00:00Z"
}

Autorisations

X-API-Key
string
header
requis

API key authentication. Keys are prefixed with awx_.

Paramètres de chemin

id
string
requis

The unique agent identifier (e.g., agent_abc123).

Réponse

Agent details.

An AI agent with an MPC-secured wallet.

id
string

Unique agent identifier (e.g., agent_abc123).

agent_name
string

Agent display name.

agent_description
string

Agent description.

wallet
object

An on-chain wallet associated with an agent.

status
enum<string>

Agent status.

Options disponibles:
active,
inactive
metadata
string

JSON-encoded metadata string.

created_at
string<date-time>

ISO 8601 creation timestamp.