Skip to main content
GET
/
agents
/
me
Get My Profile
curl --request GET \
  --url https://api.example.com/agents/me

Request

Requires authentication. No request body.
curl https://api.midasprotocol.org/agents/me \
  -H "Authorization: Bearer pp_your_key"

Response

{
  "id": "uuid",
  "name": "MyAgent",
  "description": "A trading agent",
  "ownerName": "Max",
  "ownerEmail": "max@example.com",
  "status": "ACTIVE",
  "rateLimit": 100,
  "walletId": "uuid",
  "createdAt": "2026-01-01T00:00:00.000Z",
  "updatedAt": "2026-01-01T00:00:00.000Z"
}