Skip to main content

Get Post Call Analysis API

This endpoint allows you to retrieve the post call analysis by providing the call ID.

Endpoint

GET https://www.toingg.com/api/v3/get_post_call_analysis?callId=CAd1639d5322fc58b6f5b7bdb64f46279d

Headers

  • accept: application/json
  • Authorization: Bearer YOUR_ACCESS_TOKEN

Example Code

Python
import requests

url = "https://www.toingg.com/api/v3/get_post_call_analysis"
params = {
"callId": "CAd1639d5322fc58b6f5b7bdb64f46279d"
}
headers = {
"accept": "application/json",
"Authorization": "Bearer YOUR_ACCESS_TOKEN"
}

response = requests.get(url, headers=headers, params=params)
print(response.json())
JavaScript
const fetch = require('node-fetch');

const url = 'https://www.toingg.com/api/v3/get_post_call_analysis';
const params = {
callId: 'CAd1639d5322fc58b6f5b7bdb64f46279d'
};
const headers = {
'accept': 'application/json',
'Authorization': 'Bearer YOUR_ACCESS_TOKEN'
};

fetch(url + '?' + new URLSearchParams(params), {
method: 'GET',
headers: headers
})
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error('Error:', error));

Responses

CodeDescriptionLinks
200Successful ResponseNo links
400Bad RequestNo links
422Validation ErrorNo links

Response Details

200 - Successful Response

  • Media type: application/json
  • Example Value: "string"

400 - Bad Request

  • Response body:
    {
    "detail": "Unable to fetch call details for the current callId."
    }

422 - Validation Error

  • Media type: application/json
  • Example Value:
    {
    "detail": [
    {
    "loc": [
    "string",
    0
    ],
    "msg": "string",
    "type": "string"
    }
    ]
    }