import requests
url = "https://app.oneperfectslice.ai/api/public/v1/posts/{id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"data": {
"fileId": 123,
"callTypeId": 123,
"callTypeName": "<string>",
"templateType": "summary",
"title": "<string>",
"published": true,
"result": {},
"postCreatedAt": "2023-11-07T05:31:56Z",
"fileCreatedAt": "2023-11-07T05:31:56Z",
"user": {
"id": 123,
"email": "<string>",
"fullName": "<string>"
},
"team": {
"id": 123,
"name": "<string>"
},
"postId": 123,
"callOwnerName": "<string>",
"callOwnerEmail": "<string>",
"companyDomain": "<string>",
"externalUrl": "<string>",
"aiGeneratedTitle": "<string>"
}
}Returns the full detail for a single post, including the structured result payload, call metadata, owner, and team information.
import requests
url = "https://app.oneperfectslice.ai/api/public/v1/posts/{id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"data": {
"fileId": 123,
"callTypeId": 123,
"callTypeName": "<string>",
"templateType": "summary",
"title": "<string>",
"published": true,
"result": {},
"postCreatedAt": "2023-11-07T05:31:56Z",
"fileCreatedAt": "2023-11-07T05:31:56Z",
"user": {
"id": 123,
"email": "<string>",
"fullName": "<string>"
},
"team": {
"id": 123,
"name": "<string>"
},
"postId": 123,
"callOwnerName": "<string>",
"callOwnerEmail": "<string>",
"companyDomain": "<string>",
"externalUrl": "<string>",
"aiGeneratedTitle": "<string>"
}
}Documentation Index
Fetch the complete documentation index at: https://docs.oneperfectslice.ai/llms.txt
Use this file to discover all available pages before exploring further.
fileId (not postId) to link summaries and scorecards for the same call — a single call can produce both a summary post and a scorecard post.