POST
/
v1
/
summarize
Magic Summarize
curl --request POST \
  --url https://dovetail.com/api/v1/summarize \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "highlight_ids": [],
  "note_ids": [],
  "insight_ids": [],
  "theme_ids": [],
  "tag_ids": [],
  "with_citations": true
}'
{
  "data": {
    "summary": "<string>",
    "citations": [
      {
        "id": "<string>",
        "type": "HIGHLIGHT",
        "citation_id": 123
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

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

Body

application/json

Body

The body is of type object.

Response

200
application/json

200

The response is of type object.