In the return of financials endpoints, questionnaire, and latest among others you'll see an object like this:
This is the main return containing information on the calculated valuation of the company, please see the comments in the code above to understand each line
[
{
"valuation": { // An object that stores different valuation methods and their values.
"scorecard": { // Scorecard valuation method.
"value": 1130862.7408914373, // Value derived from the scorecard method.
"weight": 0.3 // The weightage scorecard method has in the final valuation.
},
"checklist": { // Checklist valuation method.
"value": 444526.00302442117, // Value derived from the checklist method.
"weight": 0.3 // The weightage checklist method has in the final valuation.
},
"vc": { // Venture Capital (vc) valuation method.
"value": 170060.33480214415, // Value derived from the vc method.
"weight": 0.16 // The weightage vc method has in the final valuation.
},
"dcfltg": { // Discounted Cash Flow with Long-Term Growth (dcfltg) valuation method.
"value": 211813.61593508057, // Value derived from the dcfltg method.
"weight": 0.12 // The weightage dcfltg method has in the final valuation.
},
"dcfmult": { // Discounted Cash Flow with Multiples (dcfmult) valuation method.
"value": 308313.1032459647, // Value derived from the dcfmult method.
"weight": 0.12 // The weightage dcfmult method has in the final valuation.
},
"valuation_avg": { // Weighted average valuation derived from all methods.
"value": 562241.483044826 // Value of the average valuation.
},
"investment": { // Investment details.
"value": 0 // Amount of investment the company is looking for.
},
"currency_symbol": "$", // Currency in which the valuations are represented.
"range": { // Range of the valuation.
"low": 460000, // Lower limit of the range, called lower bound in our interface.
"high": 664000 // Upper limit of the range, called higher bound.
}
}
}
]
]
This is the main return containing information on the calculated valuation of the company, please see the comments in the code above to understand each line