Get user profile
GET
/api/v1/profile/{handle}
const url = 'https://example.com/api/v1/profile/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/profile/exampleRetrieves a user’s profile by handle, with optional federation support
Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” handle
required
string
Responses
Section titled “ Responses ”Profile and actor data
Media type application/json
object
Example generated
{}Not Found
Internal Server Error