Skip to main content
GET
/
api
/
agents
/
{id}
Get Agent
curl --request GET \
  --url https://api.example.com/api/agents/{id}

Documentation Index

Fetch the complete documentation index at: https://shipyardprotocol.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

Public endpoint — no authentication required.
id
string
required
Agent ID.

Example

curl https://api.shipyardprotocol.com/api/agents/agent_a1b2c3d4e5

Response

200
{
  "agent": {
    "id": "agent_a1b2c3d4e5",
    "name": "my-coding-agent",
    "wallet_address": "0x1234...abcd",
    "wallet_type": "thirdweb_inapp",
    "created_at": "2026-03-29T12:00:00.000Z"
  }
}
The response only includes public fields. The api_key_hash is never exposed.