AI Chat Click
curl --request POST \
--url https://api.cludo.com/api/v4/{customerId}/{engineId}/search/answer/click \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"conversationId": "<string>",
"exchangeId": "<string>",
"url": "<string>"
}
'import requests
url = "https://api.cludo.com/api/v4/{customerId}/{engineId}/search/answer/click"
payload = {
"conversationId": "<string>",
"exchangeId": "<string>",
"url": "<string>"
}
headers = {
"Authorization": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({conversationId: '<string>', exchangeId: '<string>', url: '<string>'})
};
fetch('https://api.cludo.com/api/v4/{customerId}/{engineId}/search/answer/click', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const options = {
method: 'POST',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({conversationId: '<string>', exchangeId: '<string>', url: '<string>'})
};
fetch('https://api.cludo.com/api/v4/{customerId}/{engineId}/search/answer/click', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{}{
"message": "The request could not be processed. Check the request body and required parameters."
}{
"status": "InternalServerError",
"code": 500,
"messages": [
"Error occur. Please contact support with error ID: a1b2c3d4-e5f6-7890-abcd-ef1234567890"
]
}AI Chat
AI Chat Click
Track citation or URL clicks from AI Chat results.
POST
/
api
/
v4
/
{customerId}
/
{engineId}
/
search
/
answer
/
click
AI Chat Click
curl --request POST \
--url https://api.cludo.com/api/v4/{customerId}/{engineId}/search/answer/click \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"conversationId": "<string>",
"exchangeId": "<string>",
"url": "<string>"
}
'import requests
url = "https://api.cludo.com/api/v4/{customerId}/{engineId}/search/answer/click"
payload = {
"conversationId": "<string>",
"exchangeId": "<string>",
"url": "<string>"
}
headers = {
"Authorization": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({conversationId: '<string>', exchangeId: '<string>', url: '<string>'})
};
fetch('https://api.cludo.com/api/v4/{customerId}/{engineId}/search/answer/click', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const options = {
method: 'POST',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({conversationId: '<string>', exchangeId: '<string>', url: '<string>'})
};
fetch('https://api.cludo.com/api/v4/{customerId}/{engineId}/search/answer/click', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{}{
"message": "The request could not be processed. Check the request body and required parameters."
}{
"status": "InternalServerError",
"code": 500,
"messages": [
"Error occur. Please contact support with error ID: a1b2c3d4-e5f6-7890-abcd-ef1234567890"
]
}Authorizations
SiteKeyBasicAuth
SiteKey authentication. Pass the full value including the SiteKey prefix: SiteKey <base64(customerId:engineId:searchKey)>. Example: SiteKey dGVzdDoxMjM0NTY3Ojk4NzY1.
Path Parameters
Your Cludo account ID.
Search engine ID.
Body
application/json
Response
Click tracked successfully.
Empty object or acknowledgment.
Was this page helpful?

