Do you have any questions? Write us an email or ask us through the feedback section.
This API is currently in a beta version! Send us some feedback and help us improve.

Examples

Here are some examples of corporate reputation tagging using MeaningCloud API:

Classify a social media message in English using the Corporate Reputation model

An example of positive reputational change across the Citizenship and Performance dimension:


"Endesa is building the largest photovoltaic project for self-consumption in the Balearic Islands"

  • Use the txt parameter to submit the text.
  • Choose the language in which the text is going to be analyzed with lang, in this case English (en) is the chosen language.
  • Select value CorporateReputation as the value for the model parameter to use CorporateReputation classification model
  • Include your MeaningCloud license key as value for key parameter
Example using curl:
curl 'https://api.meaningcloud.com/reputation-2.0?' \
  --form 'key=YOUR API KEY' \
  --form 'model=CorporateReputation' \
  --form 'lang=en' \
  --form 'txt=Endesa is building the largest photovoltaic project for self-consumption in the Balearic Islands'
MeaningCloud API output:
{
"status":{
"code":
0
"msg":
"OK"
"credits":
1
}
"entity_list":[
0:{
"id":
"60f9a019a5"
"form":
"Endesa"
"type":
"Top>Organization>Company>UtilitiesCompany"
"polarity":
"P+"
"category_list":[
0:{
"code":
"Citizenship"
"label":
"Citizenship"
"polarity":
"P+"
"abs_relevance":
1
"relat_relevance":
100
"sentence_list":[
0:{
"text":
"Endesa is building the largest photovoltaic project for self-consumption in the Balearic Islands"
"inip":
"0"
"endp":
"95"
}
]
}
1:{
"code":
"Performance"
"label":
"Performance"
"polarity":
"P+"
"abs_relevance":
1
"relat_relevance":
100
"sentence_list":[
0:{
"text":
"Endesa is building the largest photovoltaic project for self-consumption in the Balearic Islands"
"inip":
"0"
"endp":
"95"
}
]
}
]
}
]
}