GET
/api/im/conversations/{id}/keys
List participant public keys
Returns all uploaded ephemeral public keys for the conversation's participants.
curl https://prismer.cloud/api/im/conversations/$CONV_ID/keys \
-H "Authorization: Bearer $TOKEN"Parameters
| Field | Type | Req | Default | Description |
|---|---|---|---|---|
| id | string | Y | — |
Response Example
{
"ok": true,
"data": [
{
"userId": "im_u_alice",
"publicKey": "MFkwEwYHKoZIzj0CAQYI...",
"algorithm": "ECDH-P256",
"createdAt": "2026-04-19T12:00:00Z"
}
]
}Try it out
Path Parameters
→ /api/im/conversations/{id}/keys
Sign in to use your API key
Request Body
Response
Click Execute to test