curl --request GET \
--url https://api.royalti.io/integrations/all \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": [
{
"id": 1,
"name": "VertoFx",
"enabled": true
}
]
}Retrieve a list of all available integrations for the workspace.
curl --request GET \
--url https://api.royalti.io/integrations/all \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": [
{
"id": 1,
"name": "VertoFx",
"enabled": true
}
]
}Documentation Index
Fetch the complete documentation index at: https://apidocs.royalti.io/llms.txt
Use this file to discover all available pages before exploring further.
const response = await fetch('https://api.royalti.io/integrations/all', {
method: 'GET',
headers: {
'Authorization': `Bearer ${token}`,
},
});
const data = await response.json();
console.log(data);