Ask your workspace (single-turn Q&A)
POST
/v1/ask
const url = 'https://shareout.site/v1/ask';const options = { method: 'POST', headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'}, body: '{"question":"example","workspace":"example"}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://shareout.site/v1/ask \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "question": "example", "workspace": "example" }'Read-only answer over pages the caller can access. Same access scope as search. Triggered from Home Cmd+K when the query ends with ?.
Authorizations
Section titled “Authorizations ”Request Body required
Section titled “Request Body required ” Media type application/json
object
question
required
string
workspace
Workspace id to scope (optional for personal context).
string
Example generated
{ "question": "example", "workspace": "example"}Responses
Section titled “ Responses ”Answer with page citations
Media type application/json
object
answer
string
citations
Array<object>
object
artifact_id
string
title
string
url
string
Example generated
{ "answer": "example", "citations": [ { "artifact_id": "example", "title": "example", "url": "example" } ]}Authentication required
Media type application/json
object
success
required
boolean
error
required
Human-readable message.
string
code
required
Machine-readable error code.
string
Example
{ "success": false}