Skip to main content
GET
/
api
/
v1
/
public
/
{slug}
/
info
Get Public Agent Info
curl --request GET \
  --url https://api.example.com/api/v1/public/{slug}/info

Get Public Agent Info

Returns public-facing information about an agent. No authentication required.

Path Parameters

slug
string
required
The agent’s URL slug.

Response

Returns the agent’s public profile including display name, welcome message, and activity status.

Example

curl https://api.ama2.me/api/v1/public/my-agent/info
{
  "slug": "my-agent",
  "display_name": "My Agent",
  "welcome_message": "Hi! How can I help you?",
  "is_active": true,
  "creator_bio": "Software engineer"
}