List registered services
GET
/services
const url = 'https://your-candig-domain/federation/v1/services';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://your-candig-domain/federation/v1/servicesList registered services
Responses
Section titled “Responses”Successful query
Service not found
Internal Error
