Select a CTA
curl --request POST \
--url https://api.webless.ai/api/v1/cta-selection \
--header 'Content-Type: application/json' \
--data '
{
"query": "What does Webless do?"
}
'const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({query: 'What does Webless do?'})
};
fetch('https://api.webless.ai/api/v1/cta-selection', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.webless.ai/api/v1/cta-selection"
payload = { "query": "What does Webless do?" }
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text){
"text": "<string>",
"url": "<string>",
"open_type": "self"
}{
"detail": [
{}
]
}Search API
Select a CTA
Returns the CTA text and destination URL for the same query context as the search response.
POST
/
api
/
v1
/
cta-selection
Select a CTA
curl --request POST \
--url https://api.webless.ai/api/v1/cta-selection \
--header 'Content-Type: application/json' \
--data '
{
"query": "What does Webless do?"
}
'const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({query: 'What does Webless do?'})
};
fetch('https://api.webless.ai/api/v1/cta-selection', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.webless.ai/api/v1/cta-selection"
payload = { "query": "What does Webless do?" }
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text){
"text": "<string>",
"url": "<string>",
"open_type": "self"
}{
"detail": [
{}
]
}Call this after you create the
requestId for the user action. The response
returns CTA text and a target URL for the same context.Body
application/json
Example:
"What does Webless do?"
Example:
"YOUR_COMPANY"
Runtime package pointer. Omit this field or use published for production traffic. Use unpublished only when testing an unpublished runtime package.
Available options:
published, unpublished Example:
"1f7c5f74-7b9e-4a0a-9b7d-4e3e2a5e3b60"
Example:
"a1c2d3e4-1111-2222-3333-444455556666"
Was this page helpful?