Skip to content

Ask your workspace (single-turn Q&A)

POST
/v1/ask
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 ?.

Media type application/json
object
question
required
string
workspace

Workspace id to scope (optional for personal context).

string
Example generated
{
"question": "example",
"workspace": "example"
}

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
}