Skip to content

Quotation Extractor

Utterance or opinion of one or more parties to a case or object in an article is important information. This information is sometimes mixed with non-speech sentences in an article.

Quotation Extractor is a module that functions to get a set of sentences which are utterances or opinions, both direct quotes and indirect quotes. Quotation Extractor is used by inputting an article and the module will give an output as contents of the quotation and the speaker from the quoted sentence.

Illustration

Quotation Extractor

Request Method

POST

Request URL

1
https://api.prosa.ai/v2/text/quotation

Request Header

Key Data Type Description Value
Content-Type string Media type of the body sent to the API. Only Support 'application/json' application/json
x-api-key string API Key Acquired from Prosa API Console [YOUR_API_KEY]

Request Body

The request body accepts the following parameter(s) in JSON format.

Parameter Data Type Description Auto Required
text string text to be processed True

Example

Sample Request Body (JSON)

1
2
3
{
  "text": "Timnas Belgia akan menghadapi Brasil dalam laga 16 Besar Piala Dunia 2018 di Stadion Kazan Arena, Sabtu (7/7/2018) pukul 01.00 WIB. Jelang laga tersebut, bek timnas Belgia, Thomas Meunier mengaku bahwa dirinya akan kesulitan menghadapi bintang Brasil, Neymar. \"Saya tidak tahu bagaimana untuk menghentikannya. Dia sangat tak terduga. Neymar barangkali adalah pemain terbaik yang pernah bermain bersama atau melawan saya,\" ungkap Meunier dikutip Globo Esporte via Goal. Thomas Meunier sendiri adalah rekan satu klub Neymar di Paris Saint-Germain. Kedua pemain itu membantu PSG meraih gelar Ligue I pada musim 2017/2018. \"Bagaimanapun, saya akan melakukan yang terbaik. Saya tahu kami punya kesempatan, tapi saya juga tahu sangat rumit untuk menghentikan mereka [Brasil], tidak hanya Neymar. Coutinho, Firmino, Jesus, Marcelo, seluruh tim,\" lanjut bek berusia 26 tahun tersebut."
}

Sample Response Body (JSON)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
    "quotes": [
        {
            "sentence": "Jelang laga tersebut, bek timnas Belgia, Thomas Meunier mengaku bahwa dirinya akan kesulitan menghadapi bintang Brasil, Neymar.",
            "quote": "dirinya akan kesulitan menghadapi bintang Brasil, Neymar",
            "quote_begin_offset": 202,
            "quote_length": 56,
            "speaker": "bek timnas Belgia, Thomas Meunier",
            "speaker_begin_offset": 154,
            "speaker_length": 33,
            "begin_offset": 132,
            "length": 127
        },
        {
            "sentence": "\"Saya tidak tahu bagaimana untuk menghentikannya. Dia sangat tak terduga. Neymar barangkali adalah pemain terbaik yang pernah bermain bersama atau melawan saya,\" ungkap Meunier dikutip Globo Esporte via Goal.",
            "quote": "Saya tidak tahu bagaimana untuk menghentikannya. Dia sangat tak terduga. Neymar barangkali adalah pemain terbaik yang pernah bermain bersama atau melawan saya",
            "quote_begin_offset": 261,
            "quote_length": 158,
            "speaker": "Meunier",
            "speaker_begin_offset": 429,
            "speaker_length": 7,
            "begin_offset": 260,
            "length": 208
        },
        {
            "sentence": "\"Bagaimanapun, saya akan melakukan yang terbaik. Saya tahu kami punya kesempatan, tapi saya juga tahu sangat rumit untuk menghentikan mereka [Brasil], tidak hanya Neymar. Coutinho, Firmino, Jesus, Marcelo, seluruh tim,\" lanjut bek berusia 26 tahun tersebut.",
            "quote": "Bagaimanapun, saya akan melakukan yang terbaik. Saya tahu kami punya kesempatan, tapi saya juga tahu sangat rumit untuk menghentikan mereka [Brasil], tidak hanya Neymar. Coutinho, Firmino, Jesus, Marcelo, seluruh tim",
            "quote_begin_offset": 620,
            "quote_length": 216,
            "speaker": "bek berusia 26 tahun",
            "speaker_begin_offset": 846,
            "speaker_length": 20,
            "begin_offset": 619,
            "length": 257
        }
    ]
}

Free trial

Are you interested in our API? Click the button below and get your free trial now.

try now

Version History

Below is the version history of our Quotation Extractor API.

Version F1 Test Data
1.0 96.75% 10,412 tokens

Questions?

We do our best to make this documentation clear and user friendly, but if you have unanswered questions, please send email to support@prosa.ai.