Available Tools
curl --request GET \
--url https://app.yampi.ai/api/v1/accounts/{account_id}/captain/assistants/tools \
--header 'api_access_token: <api-key>'const options = {method: 'GET', headers: {api_access_token: '<api-key>'}};
fetch('https://app.yampi.ai/api/v1/accounts/{account_id}/captain/assistants/tools', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://app.yampi.ai/api/v1/accounts/{account_id}/captain/assistants/tools"
headers = {"api_access_token": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)[
{}
]Livia
Available Tools
Get list of tools available for the assistant
GET
/
api
/
v1
/
accounts
/
{account_id}
/
captain
/
assistants
/
tools
Available Tools
curl --request GET \
--url https://app.yampi.ai/api/v1/accounts/{account_id}/captain/assistants/tools \
--header 'api_access_token: <api-key>'const options = {method: 'GET', headers: {api_access_token: '<api-key>'}};
fetch('https://app.yampi.ai/api/v1/accounts/{account_id}/captain/assistants/tools', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://app.yampi.ai/api/v1/accounts/{account_id}/captain/assistants/tools"
headers = {"api_access_token": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)[
{}
]