Overview
GET
/communities/{id}/profilescommunityResolve member display identities: ?ids=a,b,c (batch, ≤200) or ?q=prefix (autocomplete, ≤8) (public instance: any signed-in user; private: members only → 404)
Fetch a record from profiles by id.
Auth: bearerAuth — calls run as the authenticated user.
Parameters
- idpathstring
- idsquery · optionalstring
- qquery · optionalstring
Responses
200
The matching members’ display profiles
- itemsCommunityProfile[]
Example
{
"items": [
{
"customerId": "string",
"displayName": "string",
"slug": "string",
"avatarUrl": "string"
}
]
}400
Error
- erroroptionalobject
Example
{
"error": {
"message": "string",
"code": "string"
}
}401
Error
- erroroptionalobject
Example
{
"error": {
"message": "string",
"code": "string"
}
}404
Error
- erroroptionalobject
Example
{
"error": {
"message": "string",
"code": "string"
}
}Code examples
cURL
curl -X GET "https://api.agenticdeveloperhub.com/communities/{id}/profiles" \
-H "Authorization: Bearer YOUR_TOKEN"JavaScript
const res = await fetch("https://api.agenticdeveloperhub.com/communities/{id}/profiles", {
method: "GET",
headers: {
"Authorization": "Bearer YOUR_TOKEN"
},
});
const data = await res.json();