Skip to main content
GET
/
sse
/
status
Sse Status
curl --request GET \
  --url https://api.capout.ai/sse/status
const options = {method: 'GET'};

fetch('https://api.capout.ai/sse/status', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
import requests

url = "https://api.capout.ai/sse/status"

response = requests.get(url)

print(response.text)
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>",
      "input": "<unknown>",
      "ctx": {}
    }
  ]
}

Query Parameters

token
string
required

DB-backed realtime token returned by POST /ws/token

document_id
string[]
recent
integer | null

Response

Successful Response