Do you have any questions? Write us an email or ask us through the feedback section.

Examples

Here are some examples of summary extraction using MeaningCloud API:

Extract summary from an English online article.

Extract summary from online document (URL), for instance this article.

  • Use the url parameter to submit the document by URL.
  • Include your MeaningCloud license key as value for key parameter.
  • Use 5 as the value for the sentences parameter.
Example using curl:
curl 'http://api.meaningcloud.com/summarization-1.0' \
    --form 'key=YOUR API KEY' \
    --form 'url=http://en.wikipedia.org/wiki/Star_Trek' \
    --form 'sentences=5'
MeaningCloud API output:
{
    "status": {
        "code": "0",
        "msg": "OK",
        "credits": "37"
    },
    "summary": "Star Trek is an American science fiction entertainment franchise based on the television series created by Gene Roddenberry.\n  The first television series, simply called Star Trek and now referred to as The Original Series, debuted in 1966 and aired for three seasons on the television network NBC.\n  ..."
}