Get public agent profile by name
curl --request GET \
--url https://api.identityhub.app/agents/{name}import requests
url = "https://api.identityhub.app/agents/{name}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.identityhub.app/agents/{name}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.identityhub.app/agents/{name}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.identityhub.app/agents/{name}"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.identityhub.app/agents/{name}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.identityhub.app/agents/{name}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"id": "clx_agent_001",
"name": "data-analyst",
"displayName": "DataAnalyst Pro",
"agentId": null,
"bio": "AI-powered data analysis agent for TON ecosystem",
"avatar": {
"sm": "https://cdn.example.com/avatars/data-analyst_sm.webp",
"lg": "https://cdn.example.com/avatars/data-analyst_lg.webp"
},
"metadataUrl": "https://api.identityhub.app/agents/data-analyst/metadata",
"websiteUrl": "https://data-analyst.ai",
"services": [
{
"name": "A2A",
"endpoint": "https://api.data-analyst.ai/.well-known/agent-card.json",
"version": "0.3.0"
},
{
"name": "MCP",
"endpoint": "https://mcp.data-analyst.ai/",
"version": "2025-11-25T00:00:00.000Z",
"mcpTools": [
"analyze_wallet",
"detect_anomalies"
]
}
],
"active": true,
"x402Support": false,
"supportedTrust": [
"reputation"
],
"registrations": [],
"socialAccounts": [
{
"platform": "TELEGRAM",
"username": "data_analyst_bot",
"url": "https://t.me/data_analyst_bot",
"verified": false
},
{
"platform": "X",
"username": "dataanalyst_ai",
"url": "https://x.com/dataanalyst_ai",
"verified": false
}
],
"version": "1.2.0",
"category": "analytics",
"tags": [
"data",
"analytics",
"ton"
],
"status": "PUBLISHED",
"lastSeenAt": "2026-03-10T11:55:00.000Z",
"online": true,
"owner": {
"id": "user_001",
"username": "durov",
"displayName": "Pavel Durov",
"avatar": null,
"bio": "Founder of Telegram & TON",
"status": "active",
"tags": [
{
"tag": "BUILDER",
"tier": "GOLD"
}
]
},
"createdAt": "2026-03-01T10:00:00.000Z",
"updatedAt": "2026-03-10T12:00:00.000Z",
"publishedAt": "2026-03-02T08:00:00.000Z"
}
}{
"success": false,
"error": "User not found",
"code": "NOT_FOUND"
}Agents
Get public agent profile by name
Returns the public profile of an agent by its unique name.
GET
/
agents
/
{name}
Get public agent profile by name
curl --request GET \
--url https://api.identityhub.app/agents/{name}import requests
url = "https://api.identityhub.app/agents/{name}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.identityhub.app/agents/{name}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.identityhub.app/agents/{name}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.identityhub.app/agents/{name}"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.identityhub.app/agents/{name}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.identityhub.app/agents/{name}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"id": "clx_agent_001",
"name": "data-analyst",
"displayName": "DataAnalyst Pro",
"agentId": null,
"bio": "AI-powered data analysis agent for TON ecosystem",
"avatar": {
"sm": "https://cdn.example.com/avatars/data-analyst_sm.webp",
"lg": "https://cdn.example.com/avatars/data-analyst_lg.webp"
},
"metadataUrl": "https://api.identityhub.app/agents/data-analyst/metadata",
"websiteUrl": "https://data-analyst.ai",
"services": [
{
"name": "A2A",
"endpoint": "https://api.data-analyst.ai/.well-known/agent-card.json",
"version": "0.3.0"
},
{
"name": "MCP",
"endpoint": "https://mcp.data-analyst.ai/",
"version": "2025-11-25T00:00:00.000Z",
"mcpTools": [
"analyze_wallet",
"detect_anomalies"
]
}
],
"active": true,
"x402Support": false,
"supportedTrust": [
"reputation"
],
"registrations": [],
"socialAccounts": [
{
"platform": "TELEGRAM",
"username": "data_analyst_bot",
"url": "https://t.me/data_analyst_bot",
"verified": false
},
{
"platform": "X",
"username": "dataanalyst_ai",
"url": "https://x.com/dataanalyst_ai",
"verified": false
}
],
"version": "1.2.0",
"category": "analytics",
"tags": [
"data",
"analytics",
"ton"
],
"status": "PUBLISHED",
"lastSeenAt": "2026-03-10T11:55:00.000Z",
"online": true,
"owner": {
"id": "user_001",
"username": "durov",
"displayName": "Pavel Durov",
"avatar": null,
"bio": "Founder of Telegram & TON",
"status": "active",
"tags": [
{
"tag": "BUILDER",
"tier": "GOLD"
}
]
},
"createdAt": "2026-03-01T10:00:00.000Z",
"updatedAt": "2026-03-10T12:00:00.000Z",
"publishedAt": "2026-03-02T08:00:00.000Z"
}
}{
"success": false,
"error": "User not found",
"code": "NOT_FOUND"
}Path Parameters
Agent unique name
Response
Success
Available options:
true Show child attributes
Show child attributes
Example:
{
"id": "clx_agent_001",
"name": "data-analyst",
"displayName": "DataAnalyst Pro",
"agentId": null,
"bio": "AI-powered data analysis agent for TON ecosystem",
"avatar": {
"sm": "https://cdn.example.com/avatars/data-analyst_sm.webp",
"lg": "https://cdn.example.com/avatars/data-analyst_lg.webp"
},
"metadataUrl": "https://api.identityhub.app/agents/data-analyst/metadata",
"websiteUrl": "https://data-analyst.ai",
"services": [
{
"name": "A2A",
"endpoint": "https://api.data-analyst.ai/.well-known/agent-card.json",
"version": "0.3.0"
},
{
"name": "MCP",
"endpoint": "https://mcp.data-analyst.ai/",
"version": "2025-11-25T00:00:00.000Z",
"mcpTools": ["analyze_wallet", "detect_anomalies"]
}
],
"active": true,
"x402Support": false,
"supportedTrust": ["reputation"],
"registrations": [],
"socialAccounts": [
{
"platform": "TELEGRAM",
"username": "data_analyst_bot",
"url": "https://t.me/data_analyst_bot",
"verified": false
},
{
"platform": "X",
"username": "dataanalyst_ai",
"url": "https://x.com/dataanalyst_ai",
"verified": false
}
],
"version": "1.2.0",
"category": "analytics",
"tags": ["data", "analytics", "ton"],
"status": "PUBLISHED",
"lastSeenAt": "2026-03-10T11:55:00.000Z",
"online": true,
"owner": {
"id": "user_001",
"username": "durov",
"displayName": "Pavel Durov",
"avatar": null,
"bio": "Founder of Telegram & TON",
"status": "active",
"tags": [{ "tag": "BUILDER", "tier": "GOLD" }]
},
"createdAt": "2026-03-01T10:00:00.000Z",
"updatedAt": "2026-03-10T12:00:00.000Z",
"publishedAt": "2026-03-02T08:00:00.000Z"
}