cURL
curl --request GET \ --url https://api.reportify.cn/v1/docs/{doc_id}/summary \ --header 'Authorization: Bearer <token>'
{ "doc_id": "<string>", "summary": "<string>" }
Retrieve the summary of the specified document.
/v1/docs/{doc_id}/summary
GET
curl -X GET https://api.reportify.cn/v1/docs/1046895208953942016/summary \ -H "Authorization: Bearer 447460****09c9" \ -H "Content-Type: application/json"
import requests url = "https://api.reportify.cn/v1/docs/1046895208953942016/summary" headers = { "Authorization": "Bearer 447460****09c9", "Content-Type": "application/json" } response = requests.get(url, headers=headers) print(response.json())
{ "doc_id": "1046895208953942016", "summary": "This report provides a concise overview of AI applications in the finance sector, highlighting recent advancements and market impacts." }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Successful Response