Get ActivityPub actor profile
GET
/api/v1/activitypub/user/{handle}
const url = 'https://example.com/api/v1/activitypub/user/example';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/api/v1/activitypub/user/exampleRetrieves an ActivityPub Person object for a user with public key
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”handle
required
string
Responses
Section titled “Responses”ActivityPub Person object with publicKey
Media typeapplication/json
object
Examplegenerated
{}Not Found
Internal Server Error