List service names that have emitted traces in a window.
GET
/traces/services
const url = 'https://api.siteqwality.com/traces/services';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
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://api.siteqwality.com/traces/services \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations ”Responses
Section titled “ Responses ”Service names
Media type application/json
object
services
required
Array<string>
Example generated
{ "services": [ "example" ]}Missing or invalid authentication
Internal server error