Skip to main content
GET
/
api
/
v3
/
threads
/
{id}
/
suggested_queries
Get suggested queries for a conversation thread
curl --request GET \
  --url https://paradigm.lighton.ai/api/v3/threads/{id}/suggested_queries \
  --header 'Authorization: Bearer <token>'
import requests

url = "https://paradigm.lighton.ai/api/v3/threads/{id}/suggested_queries"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://paradigm.lighton.ai/api/v3/threads/{id}/suggested_queries', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
"<unknown>"

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Response

200 - application/json

List of suggested queries