GET api/market/security/{code}/recommendations
Gets the research and recommendation information related to the security code
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
code |
ASX security code |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
Returns research and recommendation informtion
ResearchAndRecommendationName | Description | Type | Additional information |
---|---|---|---|
StrongBuy |
Number of broking houses that recommend strong buy |
integer |
None. |
Buy |
Number of broking houses that recommend buy |
integer |
None. |
Hold |
Number of broking houses that recommend hold |
integer |
None. |
UnderPerf |
Number of broking houses that quote under performing |
integer |
None. |
Sell |
Number of broking houses that recommend sell |
integer |
None. |
RecommendationDate |
Last recommendation update. |
Date |
None. |
BrokingHouses |
Broking houses that made the recommendations. |
string |
None. |
Value |
Morningstar value. |
enMorningstarRank |
None. |
Income |
Morningstar income. |
enMorningstarRank |
None. |
Risk |
Morningstar risk rank |
enMorningstarRiskRank |
None. |
Growth |
Morningstar growth rank |
enMorningstarRank |
None. |
Recommendation |
Action recommendation for security example buy, sell, hold etc. |
enBellPotterRecommendation |
None. |
RecommendationStatus |
Action recommendation status. |
string |
None. |
LongTerm |
Long term recommendation rating. |
string |
None. |
ShortTerm |
Short term recommendation rating. |
string |
None. |
Response Formats
application/json, text/json
{ "StrongBuy": 3, "Buy": 2, "Hold": 0, "UnderPerf": 0, "Sell": 0, "RecommendationDate": "2025-4-4", "BrokingHouses": "Bell Potter", "Value": 3, "Income": 1, "Risk": 3, "Growth": 2, "Recommendation": 0, "RecommendationStatus": "Unchanged", "LongTerm": "4/5", "ShortTerm": "1/5" }
application/xml, text/xml
<ResearchAndRecommendation xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TPP.B2B.Webservices2.Contract.Market"> <BrokingHouses>Bell Potter</BrokingHouses> <Buy>2</Buy> <Growth>AboveAvg</Growth> <Hold>0</Hold> <Income>Highest</Income> <LongTerm>4/5</LongTerm> <Recommendation>Buy</Recommendation> <RecommendationDate xmlns:d2p1="http://schemas.datacontract.org/2004/07/TPP.Utilities" /> <RecommendationStatus>Unchanged</RecommendationStatus> <Risk>Average</Risk> <Sell>0</Sell> <ShortTerm>1/5</ShortTerm> <StrongBuy>3</StrongBuy> <UnderPerf>0</UnderPerf> <Value>Average</Value> </ResearchAndRecommendation>