id stringlengths 53 86 | api_name stringlengths 2 76 | api_description stringlengths 1 500 ⌀ | api_score float64 0 10 ⌀ | endpoint_name stringlengths 1 190 | endpoint_description stringlengths 0 500 | response_status_code int64 100 505 | response_summary stringlengths 1 68 ⌀ | response_json stringlengths 6 50k | response_json_schema stringlengths 14 150k |
|---|---|---|---|---|---|---|---|---|---|
a7be9f2d-eea7-474d-a394-73af4c37d653/beab615c-10d2-48b1-9b28-1dbe7f4ce8e5/0/0 | RChilli Contact Extractor | RChilli Contact Extractor API to extract the contact details from given text. | null | RChilli Contact Extractor | RChilli Contact Extractor is a rest API, that uses an algorithm for extracting Name, Email, City, State, Country, Website, Phone Number, and Address from the given text content. | 200 | New Example | {"Name": {"FullName": "John Deo", "TitleName": "", "FirstName": "John", "MiddleName": "", "LastName": "Deo", "FormattedName": "John Deo", "ConfidenceScore": 10}, "Email": [{"EmailAddress": "Johndeo@rchilli.com", "ConfidenceScore": 10}, {"EmailAddress": "John75@xyz.com", "ConfidenceScore": 10}, {"EmailAddress": "dedobbert@christianacare.org", "ConfidenceScore": 10}, {"EmailAddress": "ben.s.levy@gmail.com", "ConfidenceScore": 10}], "PhoneNumber": [{"Number": "200-600-3000", "ISDCode": "+1", "OriginalNumber": "200-600-3000", "FormattedNumber": "+1 200-600-3000", "Type": "Phone", "ConfidenceScore": 10}, {"Number": "302-236-7313", "ISDCode": "+1", "OriginalNumber": "302-236-7313", "FormattedNumber": "+1 302-236-7313", "Type": "Phone", "ConfidenceScore": 10}, {"Number": "612-508-9554", "ISDCode": "+1", "OriginalNumber": "612-508-9554", "FormattedNumber": "+1 612-508-9554", "Type": "Phone", "ConfidenceScore": 10}, {"Number": "302-674-0600", "ISDCode": "+1", "OriginalNumber": "302-674-0600", "FormattedNumber": "+1 302-674-0600", "Type": "Phone", "ConfidenceScore": 10}, {"Number": "1234567890", "ISDCode": "+1", "OriginalNumber": "123-456-7890", "FormattedNumber": "+1 123-456-7890", "Type": "Mobile", "ConfidenceScore": 10}, {"Number": "+1-212-9876000", "ISDCode": "+1", "OriginalNumber": "212-987-6000", "FormattedNumber": "+1-212-9876000", "Type": "Fax", "ConfidenceScore": 10}], "WebSite": [{"Type": "Linkedin", "Url": "https://www.linkedin.com/Johndeo/"}, {"Type": "Facebook", "Url": "https://www.facebook.com/Johndeo"}, {"Type": "Twitter", "Url": "https://twitter.com/Johndeo"}], "Location": [{"Street": "2915 John R St. Apt 306", "City": "Detroit", "State": "MI", "StateIsoCode": "US-MI", "Country": "USA", "CountryCode": {"IsoAlpha2": "US", "IsoAlpha3": "USA", "UNCode": "840"}, "ZipCode": "48201", "FormattedAddress": "2915 John R St. Apt 306, Detroit, MI, 48201, USA"}, {"Street": "180 N Jefferson St. Apt 2703", "City": "Chicago", "State": "IL", "StateIsoCode": "US-IL", "Country": "USA", "CountryCode": {"IsoAlpha2": "US", "IsoAlpha3": "USA", "UNCode": "840"}, "ZipCode": "60661", "FormattedAddress": "180 N Jefferson St. Apt 2703, Chicago, IL, 60661, USA"}, {"Street": "", "City": "Detroit", "State": "MI", "StateIsoCode": "US-MI", "Country": "USA", "CountryCode": {"IsoAlpha2": "US", "IsoAlpha3": "USA", "UNCode": "840"}, "ZipCode": "", "FormattedAddress": "Detroit, MI, USA"}, {"Street": "", "City": "Chicago", "State": "IL", "StateIsoCode": "US-IL", "Country": "USA", "CountryCode": {"IsoAlpha2": "US", "IsoAlpha3": "USA", "UNCode": "840"}, "ZipCode": "", "FormattedAddress": "Chicago, IL, USA"}, {"Street": "", "City": "Dover", "State": "DE", "StateIsoCode": "US-DE", "Country": "USA", "CountryCode": {"IsoAlpha2": "US", "IsoAlpha3": "USA", "UNCode": "840"}, "ZipCode": "", "FormattedAddress": "Dover, DE, USA"}, {"Street": "", "City": "Dover", "State": "DE", "StateIsoCode": "US-DE", "Country": "USA", "CountryCode": {"IsoAlpha2": "US", "IsoAlpha3": "USA", "UNCode": "840"}, "ZipCode": "", "FormattedAddress": "Dover, DE, USA"}, {"Street": "", "City": "Dover", "State": "DE", "StateIsoCode": "US-DE", "Country": "USA", "CountryCode": {"IsoAlpha2": "US", "IsoAlpha3": "USA", "UNCode": "840"}, "ZipCode": "", "FormattedAddress": "Dover, DE, USA"}]} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"Name": {"type": "object", "properties": {"FullName": {"type": "string"}, "TitleName": {"type": "string"}, "FirstName": {"type": "string"}, "MiddleName": {"type": "string"}, "LastName": {"type": "string"}, "FormattedName": {"type": "string"}, "ConfidenceScore": {"type": "integer"}}, "required": ["ConfidenceScore", "FirstName", "FormattedName", "FullName", "LastName", "MiddleName", "TitleName"]}, "Email": {"type": "array", "items": {"type": "object", "properties": {"EmailAddress": {"type": "string"}, "ConfidenceScore": {"type": "integer"}}, "required": ["ConfidenceScore", "EmailAddress"]}}, "PhoneNumber": {"type": "array", "items": {"type": "object", "properties": {"Number": {"type": "string"}, "ISDCode": {"type": "string"}, "OriginalNumber": {"type": "string"}, "FormattedNumber": {"type": "string"}, "Type": {"type": "string"}, "ConfidenceScore": {"type": "integer"}}, "required": ["ConfidenceScore", "FormattedNumber", "ISDCode", "Number", "OriginalNumber", "Type"]}}, "WebSite": {"type": "array", "items": {"type": "object", "properties": {"Type": {"type": "string"}, "Url": {"type": "string"}}, "required": ["Type", "Url"]}}, "Location": {"type": "array", "items": {"type": "object", "properties": {"Street": {"type": "string"}, "City": {"type": "string"}, "State": {"type": "string"}, "StateIsoCode": {"type": "string"}, "Country": {"type": "string"}, "CountryCode": {"type": "object", "properties": {"IsoAlpha2": {"type": "string"}, "IsoAlpha3": {"type": "string"}, "UNCode": {"type": "string"}}, "required": ["IsoAlpha2", "IsoAlpha3", "UNCode"]}, "ZipCode": {"type": "string"}, "FormattedAddress": {"type": "string"}}, "required": ["City", "Country", "CountryCode", "FormattedAddress", "State", "StateIsoCode", "Street", "ZipCode"]}}}, "required": ["Email", "Location", "Name", "PhoneNumber", "WebSite"]} |
d8b7feef-88c6-4fa5-9d3c-feac04763fdd/ea7877de-aaee-448e-8461-b7c88f97a842/0/0 | Time Interpreter | This API is a powerful tool for converting human text into timestamps. With this Time Interpreter API, users can quickly and accurately convert natural language descriptions of time, such as "yesterday at 3pm" or "next Friday at 7am," into precise timestamp values that can be used in a wide range of applications. Whether you're building a scheduling app or analyzing data, our API can help streamline your workflow and save you valuable time.
If you have issues with responses or questions plea... | null | time interpreter endpoint | main endpoint in which you POST a simple body { "message": "tomorrow at 3pm" } and get a timestamp as a return object. The time_zone field is optional. | 200 | New Example | {"time_zone": "America/New_York", "date_time": "2023-03-17T07:00:00", "start_time": "2023-03-17T07:00:00", "end_time": "2023-03-17T08:00:00", "message_grains": ["DAY", "HOUR", "AMPM"]} | {"type": "object", "properties": {"time_zone": {"type": "string"}, "date_time": {"type": "string"}, "start_time": {"type": "string"}, "end_time": {"type": "string"}, "message_grains": {"type": "array", "items": {"type": "string"}}}} |
3b3ba0f8-0dca-4d83-a302-b2cb775f7ebb/992b99ba-34a4-43f2-bf0a-9fb0d1d1064a/0/0 | Multilingual sentiment analysis | Classify texts by sentiment in 11 different languages. | null | Multilingual sentiment analysis | Classify texts by their sentiment. For every text, the API returns one label out of five possible classes:
- "very positive" (5 stars)
- "positive" (4 stars)
- "mixed" (3 stars)
- "negative" (2 stars)
- "very negative" (1 star) | 422 | Example_1 | {"detail": [{"loc": [], "msg": "", "type": ""}]} | {"title": "HTTPValidationError", "type": "object", "properties": {"detail": {"title": "Detail", "type": "array", "items": {"title": "ValidationError", "required": ["loc", "msg", "type"], "type": "object", "properties": {"loc": {"title": "Location", "type": "array", "items": {"type": "string"}}, "msg": {"title": "Message", "type": "string"}, "type": {"title": "Error Type", "type": "string"}}}}}} |
e39c9bb2-6735-4413-a73b-1cc3cc27610e/6fa1d89e-20c8-4b86-814b-4b0a334fe47c/0/0 | Text Highlights | If you want to save time reading only the main information from a large text (articles, news, e-mails, for example), this API is for you. Load the full text and this API will return the main topics of the original text. The number of topics will depend on the size of the original text. | 5.2 | Get Highlights | Get the main information from a large text. | 200 | New Example | {"highlights": ["It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.", "The first line of Lorem Ipsum, \"Lorem ipsum dolor sit amet..\", comes from a line in section 1.10.32."]} | {"type": "object", "properties": {"highlights": {"type": "array", "items": {"type": "string"}}}} |
bc3975dd-f5c2-4152-b762-2e3e0f9cfbe7/06805550-e746-4ffd-8b65-037c32894db7/0/0 | Link Preview | Preview (unfurl, expand) links (URLs). | null | Get Preview | Given a URL parameter, returns the data associated with that URL as JSON. | 200 | DashKite Blog Post | {"author": "Dan Yoder", "description": "Please read and share! Thank you!https://t.co/Ows39j5pHM", "favicon": "https://abs.twimg.com/favicons/twitter.ico", "html": "<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Please read and share! Thank you!<a href=\"https://t.co/Ows39j5pHM\">https://t.co/Ows39j5pHM</a></p>— Dan Yoder (@dyoder) <a href=\"https://twitter.com/dyoder/status/1357114584792895490?ref_src=twsrc%5Etfw\">February 3, 2021</a></blockquote>\n<script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>\n", "media": {}, "publisher": "Twitter", "url": "https://twitter.com/dyoder/status/1357114584792895490"} | {"additionalProperties": false, "properties": {"author": {"description": "The author of the content.", "type": "string"}, "description": {"description": "The description of the content.", "type": "string"}, "favicon": {"description": "The publisher favicon. **Important:** this is not the same as the image associated with the content or the publisher *logo*, which some providers include. We want the highest resolution version (ex: 64x64).\n", "format": "uri", "type": "string"}, "html": {"description": "A block of HTML to display as the preview. This is HTML received from the provider's oEmbed server and represents the provider's preference when rendering a link preview. We recommend placing this HTML within an iframe as a matter of security hygiene.\n", "type": "string"}, "media": {"additionalProperties": false, "description": "An object describing any associated media.", "properties": {"audio": {"items": {"additionalProperties": false, "properties": {"formats": {"description": "A list of audio sources specified by their mediatype and URL. We recommend arranging these as sources within an audio element to allow the client to select the optimal format for the circumstance.\n", "items": {"additionalProperties": false, "properties": {"format": {"description": "The mediatype of this audio", "type": "string"}, "url": {"description": "The URL where this audio may be found.", "format": "uri", "type": "string"}}, "type": "object"}, "type": "array"}}, "type": "object"}, "type": "array"}, "images": {"items": {"additionalProperties": false, "properties": {"caption": {"description": "Description of image or alternate text.", "type": "string"}, "formats": {"description": "A list of images specified by their mediatype and URL. We recommend arranging these in a picture element to allow the client to select the optimal format for the circumstance.\n", "items": {"additionalProperties": false, "properties": {"format": {"description": "The mediatype of this image", "type": "string"}, "url": {"description": "The URL where this image may be found.", "format": "uri", "type": "string"}}, "type": "object"}, "type": "array"}, "url": {"description": "URL for fallback image", "format": "uri", "type": "string"}}, "type": "object"}, "type": "array"}, "players": {"items": {"additionalProperties": false, "properties": {"html": {"description": "The HTML for a custom player as specified by the provider's oEmbed server. This represents the provider's preference when rendering preview media. We recommend placing this HTML within an iframe as a matter of security hygiene.\n", "type": "string"}}, "type": "object"}, "type": "array"}, "videos": {"items": {"additionalProperties": false, "properties": {"formats": {"description": "A list of audio sources specified by their mediatype and URL. We recommend arranging these as sources within an video element to allow the client to select the optimal format for the circumstance.\n", "items": {"additionalProperties": false, "properties": {"format": {"description": "The mediatype of this audio", "type": "string"}, "url": {"description": "The URL where this audio may be found.", "format": "uri", "type": "string"}}, "type": "object"}, "type": "array"}}, "type": "object"}, "type": "array"}}, "type": "object"}, "published": {"description": "The publish date in ISO 8601\n", "format": "date-time", "type": "string"}, "publisher": {"description": "The name of the publisher, ex: *Twitter*.\n", "type": "string"}, "title": {"description": "The title of the content.", "type": "string"}, "url": {"description": "The canonical URL of the link, providing an authoritative reference to this resource.", "format": "uri", "type": "string"}}, "type": "object"} |
232fae56-f024-4cef-ac7a-530d7d68527a/d3049705-9176-448f-95e5-3fe26132ddf9/0/0 | Multilingual Text Analysis Bundle by Matnon | 11 Languages, 8 Tasks, One Price. Ultimate Text Analysis Solution with Rock-Solid Infrastructure. Brought to you by Matnon Analytics NLP Team. | null | Multilingual Tokenizer | Simple but Robust tokenizer.
Requires text field. Takes language as optional.
Returns tokens. | 200 | Tokenizer Example | {"tokens": ["From", "the", "18th", "up", "to", "the", "20th", "centuries", ",", "canaries", "and", "finches", "were", "used", "in", "the", "UK", ",", "Canada", "and", "the", "US", "in", "the", "coal", "mining", "industry", "to", "detect", "carbon", "monoxide", "."]} | {"tokens": ["From", "the", "18th", "up", "to", "the", "20th", "centuries", ",", "canaries", "and", "finches", "were", "used", "in", "the", "UK", ",", "Canada", "and", "the", "US", "in", "the", "coal", "mining", "industry", "to", "detect", "carbon", "monoxide", "."]} |
232fae56-f024-4cef-ac7a-530d7d68527a/e6a09bca-c4b4-4739-9dd4-74a9d7d1eaa9/0/0 | Multilingual Text Analysis Bundle by Matnon | 11 Languages, 8 Tasks, One Price. Ultimate Text Analysis Solution with Rock-Solid Infrastructure. Brought to you by Matnon Analytics NLP Team. | null | Multilingual Noun Chunk Extractor | Extracts noun chunks from text.
Requires text field. Takes language as optional.
Returns noun chunks, chunk root, dependency, head, starting character and ending character. | 200 | Noun Chunks Example | {"chunks": [{"text": "Khruangbin", "root": "Khruangbin", "dependency": "nsubj", "head": "are", "start": 0, "end": 10}, {"text": "an American psychedelic trio", "root": "trio", "dependency": "attr", "head": "are", "start": 15, "end": 43}, {"text": "Houston", "root": "Houston", "dependency": "pobj", "head": "in", "start": 53, "end": 60}, {"text": "Texas", "root": "Texas", "dependency": "appos", "head": "Houston", "start": 62, "end": 67}, {"text": "Burton", "root": "Burton", "dependency": "pobj", "head": "from", "start": 89, "end": 95}, {"text": "Texas", "root": "Texas", "dependency": "appos", "head": "Burton", "start": 97, "end": 102}, {"text": "Laura Lee", "root": "Lee", "dependency": "pobj", "head": "of", "start": 118, "end": 127}, {"text": "bass", "root": "bass", "dependency": "pobj", "head": "on", "start": 131, "end": 135}, {"text": "Mark Speer", "root": "Speer", "dependency": "appos", "head": "Burton", "start": 137, "end": 147}, {"text": "guitar", "root": "guitar", "dependency": "pobj", "head": "on", "start": 151, "end": 157}, {"text": "Donald \u201cDJ\u201d Johnson Jr.", "root": "Jr.", "dependency": "conj", "head": "Speer", "start": 163, "end": 186}, {"text": "drums", "root": "drums", "dependency": "pobj", "head": "on", "start": 190, "end": 195}, {"text": "sometimes keys", "root": "keys", "dependency": "conj", "head": "drums", "start": 201, "end": 215}]} | {"chunks": [{"text": "Khruangbin", "root": "Khruangbin", "dependency": "nsubj", "head": "are", "start": 0, "end": 10}, {"text": "an American psychedelic trio", "root": "trio", "dependency": "attr", "head": "are", "start": 15, "end": 43}, {"text": "Houston", "root": "Houston", "dependency": "pobj", "head": "in", "start": 53, "end": 60}, {"text": "Texas", "root": "Texas", "dependency": "appos", "head": "Houston", "start": 62, "end": 67}, {"text": "Burton", "root": "Burton", "dependency": "pobj", "head": "from", "start": 89, "end": 95}, {"text": "Texas", "root": "Texas", "dependency": "appos", "head": "Burton", "start": 97, "end": 102}, {"text": "Laura Lee", "root": "Lee", "dependency": "pobj", "head": "of", "start": 118, "end": 127}, {"text": "bass", "root": "bass", "dependency": "pobj", "head": "on", "start": 131, "end": 135}, {"text": "Mark Speer", "root": "Speer", "dependency": "appos", "head": "Burton", "start": 137, "end": 147}, {"text": "guitar", "root": "guitar", "dependency": "pobj", "head": "on", "start": 151, "end": 157}, {"text": "Donald \u201cDJ\u201d Johnson Jr.", "root": "Jr.", "dependency": "conj", "head": "Speer", "start": 163, "end": 186}, {"text": "drums", "root": "drums", "dependency": "pobj", "head": "on", "start": 190, "end": 195}, {"text": "sometimes keys", "root": "keys", "dependency": "conj", "head": "drums", "start": 201, "end": 215}]} |
232fae56-f024-4cef-ac7a-530d7d68527a/ac9c90c2-5c23-4689-a6a7-b97bc032d93b/0/0 | Multilingual Text Analysis Bundle by Matnon | 11 Languages, 8 Tasks, One Price. Ultimate Text Analysis Solution with Rock-Solid Infrastructure. Brought to you by Matnon Analytics NLP Team. | null | Multilingual Sentence Segmentation | Splits text into sentence segments.
Requires text field. Takes language as optional. (Default: English)
Returns sentence, starting character and ending character. | 200 | Sentence Segmentation Example | {"sentences": [{"text": "Matnon, Inc. has a dot inside.", "start": 0, "end": 30}, {"text": "The model knows that the dot doesn't end the sentence, though.", "start": 31, "end": 93}]} | {"sentences": [{"text": "Matnon, Inc. has a dot inside.", "start": 0, "end": 30}, {"text": "The model knows that the dot doesn't end the sentence, though.", "start": 31, "end": 93}]} |
232fae56-f024-4cef-ac7a-530d7d68527a/0e4733e5-19d1-4082-8d4d-fb86a30716ec/0/0 | Multilingual Text Analysis Bundle by Matnon | 11 Languages, 8 Tasks, One Price. Ultimate Text Analysis Solution with Rock-Solid Infrastructure. Brought to you by Matnon Analytics NLP Team. | null | Multilingual Stop Words Extractor | Extracts stop words from text.
Requires text field. Takes language as optional.
Returns token text and is_stop boolean. | 200 | Stop Words Example | {"tokens": [{"text": "Mercury", "is_stop": false}, {"text": "was", "is_stop": true}, {"text": "born", "is_stop": false}, {"text": "Farrokh", "is_stop": false}, {"text": "Bulsara", "is_stop": false}, {"text": "in", "is_stop": true}, {"text": "Stone", "is_stop": false}, {"text": "Town", "is_stop": false}, {"text": "in", "is_stop": true}, {"text": "the", "is_stop": true}, {"text": "British", "is_stop": false}, {"text": "protectorate", "is_stop": false}, {"text": "of", "is_stop": true}, {"text": "Zanzibar", "is_stop": false}, {"text": "(", "is_stop": false}, {"text": "now", "is_stop": true}, {"text": "part", "is_stop": true}, {"text": "of", "is_stop": true}, {"text": "Tanzania", "is_stop": false}, {"text": ")", "is_stop": false}, {"text": "on", "is_stop": true}, {"text": "5", "is_stop": false}, {"text": "September", "is_stop": false}, {"text": "1946", "is_stop": false}, {"text": ".", "is_stop": false}]} | {"tokens": [{"text": "Mercury", "is_stop": false}, {"text": "was", "is_stop": true}, {"text": "born", "is_stop": false}, {"text": "Farrokh", "is_stop": false}, {"text": "Bulsara", "is_stop": false}, {"text": "in", "is_stop": true}, {"text": "Stone", "is_stop": false}, {"text": "Town", "is_stop": false}, {"text": "in", "is_stop": true}, {"text": "the", "is_stop": true}, {"text": "British", "is_stop": false}, {"text": "protectorate", "is_stop": false}, {"text": "of", "is_stop": true}, {"text": "Zanzibar", "is_stop": false}, {"text": "(", "is_stop": false}, {"text": "now", "is_stop": true}, {"text": "part", "is_stop": true}, {"text": "of", "is_stop": true}, {"text": "Tanzania", "is_stop": false}, {"text": ")", "is_stop": false}, {"text": "on", "is_stop": true}, {"text": "5", "is_stop": false}, {"text": "September", "is_stop": false}, {"text": "1946", "is_stop": false}, {"text": ".", "is_stop": false}]} |
232fae56-f024-4cef-ac7a-530d7d68527a/cbdfefa3-e78b-422b-90b3-0a5c7ca1545d/0/0 | Multilingual Text Analysis Bundle by Matnon | 11 Languages, 8 Tasks, One Price. Ultimate Text Analysis Solution with Rock-Solid Infrastructure. Brought to you by Matnon Analytics NLP Team. | null | Multilingual Lemmatizer | Requires text field. Takes language as optional. (Default: English)
Returns tokenized lemmas. | 200 | Lemmatizer Example | {"lemmas": ["yo", "estar", "perdido", ",", "En", "uno", "casa", "surreal", "."]} | {"lemmas": ["yo", "estar", "perdido", ",", "En", "uno", "casa", "surreal", "."]} |
232fae56-f024-4cef-ac7a-530d7d68527a/63771b73-38d4-4cd4-a549-bc9d6024721b/0/0 | Multilingual Text Analysis Bundle by Matnon | 11 Languages, 8 Tasks, One Price. Ultimate Text Analysis Solution with Rock-Solid Infrastructure. Brought to you by Matnon Analytics NLP Team. | null | Language Detection | Requires text. Returns language and score.
Returned language codes are in ISO 639-1 Language Code format.
Bonus: This endpoint works in 55 languages. Yay! | 200 | Language Detection | {"language": "en", "score": 0.8571403775917661} | {"language": "en", "score": 0.8571403775917661} |
232fae56-f024-4cef-ac7a-530d7d68527a/3af8b7d1-f554-4d5e-89f7-63b774e3939c/0/0 | Multilingual Text Analysis Bundle by Matnon | 11 Languages, 8 Tasks, One Price. Ultimate Text Analysis Solution with Rock-Solid Infrastructure. Brought to you by Matnon Analytics NLP Team. | null | Multilingual Part-of-Speech Tagging | Part-of-Speech Tagging from text.
Requires text field. Takes language as optional. (Dafault: English)
Returns token, part-of-speech label and part-of-speech tag. | 200 | PoS Tagging Example | {"tokens": [{"text": "RapidAPI", "pos": "NOUN", "tag": "NN"}, {"text": "was", "pos": "AUX", "tag": "VBD"}, {"text": "founded", "pos": "VERB", "tag": "VBN"}, {"text": "in", "pos": "ADP", "tag": "IN"}, {"text": "Tel", "pos": "PROPN", "tag": "NNP"}, {"text": "Aviv", "pos": "PROPN", "tag": "NNP"}, {"text": "by", "pos": "ADP", "tag": "IN"}, {"text": "Iddo", "pos": "PROPN", "tag": "NNP"}, {"text": "Gino", "pos": "PROPN", "tag": "NNP"}, {"text": "and", "pos": "CCONJ", "tag": "CC"}, {"text": "Mickey", "pos": "PROPN", "tag": "NNP"}, {"text": "Haslavsky", "pos": "PROPN", "tag": "NNP"}, {"text": "on", "pos": "ADP", "tag": "IN"}, {"text": "January", "pos": "PROPN", "tag": "NNP"}, {"text": "2015", "pos": "NUM", "tag": "CD"}, {"text": ".", "pos": "PUNCT", "tag": "."}]} | {"tokens": [{"text": "RapidAPI", "pos": "NOUN", "tag": "NN"}, {"text": "was", "pos": "AUX", "tag": "VBD"}, {"text": "founded", "pos": "VERB", "tag": "VBN"}, {"text": "in", "pos": "ADP", "tag": "IN"}, {"text": "Tel", "pos": "PROPN", "tag": "NNP"}, {"text": "Aviv", "pos": "PROPN", "tag": "NNP"}, {"text": "by", "pos": "ADP", "tag": "IN"}, {"text": "Iddo", "pos": "PROPN", "tag": "NNP"}, {"text": "Gino", "pos": "PROPN", "tag": "NNP"}, {"text": "and", "pos": "CCONJ", "tag": "CC"}, {"text": "Mickey", "pos": "PROPN", "tag": "NNP"}, {"text": "Haslavsky", "pos": "PROPN", "tag": "NNP"}, {"text": "on", "pos": "ADP", "tag": "IN"}, {"text": "January", "pos": "PROPN", "tag": "NNP"}, {"text": "2015", "pos": "NUM", "tag": "CD"}, {"text": ".", "pos": "PUNCT", "tag": "."}]} |
dbdf4899-2a45-4476-83dd-82b331b66158/6285d296-5079-427b-968c-7d7a747b0114/0/0 | Profanity Filter | This API provides a simple way to filter profanity from text. It can detect profanity in text, and replace it with a specified replacement string. | 5.9 | /profanity-filter/censor | The method censors profanity from the input text. The method returns the censored text and information if the input text contains profanity. You can customize the replacement string by passing maskChar parameter. The default value is *. Also you can extend profane words by passing additionalProfaneWords list with additional profane words. The default value is empty list. | 200 | New Example | {"text": "hello $$$$$!", "isProfane": true} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"text": {"type": "string"}, "isProfane": {"type": "boolean"}}, "required": ["isProfane", "text"]} |
dbdf4899-2a45-4476-83dd-82b331b66158/84eb1e53-f06b-4ca6-9f6c-01bcf0006dbb/0/0 | Profanity Filter | This API provides a simple way to filter profanity from text. It can detect profanity in text, and replace it with a specified replacement string. | 5.9 | /profanity-filter/predict | Predicts whether the input text contains profanity. Method return profanity probability. The probability is between 0 and 1. The higher the probability, the higher the likelihood that the input text contains profanity. If you pass useProbability as true, the method will return the probability of the input text containing profanity. Otherwise, it will return 1 or 0 value indicating whether the input text contains profanity. The default value is false. | 200 | New Example | {"text": "hello world!", "profanityProbability": 0} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"text": {"type": "string"}, "profanityProbability": {"type": "integer"}}, "required": ["profanityProbability", "text"]} |
dbdf4899-2a45-4476-83dd-82b331b66158/34bb0d75-504a-40e3-9eb8-88b72b9a43ad/0/0 | Profanity Filter | This API provides a simple way to filter profanity from text. It can detect profanity in text, and replace it with a specified replacement string. | 5.9 | /profanity-filter/health | Return the health status of the API. Returns current UTC time. | 200 | New Example | {"time": "2022-06-05T02:42:43.552409"} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"time": {"type": "string"}}, "required": ["time"]} |
2b5ab891-0246-4c10-8883-3932bdbe4772/cca5f86a-04ea-4b6a-b119-d420b056a338/0/0 | Paraphraser | The paraphrasing API can easily rewrite, rephrase, change and transform the syntax, structure of the text. Support for more than 50 language including English, French, German, Spanish, Italian, Arabic, Chinese, automatical language detection, pay as you go pricing and free usage plans. Find out more in the About section and test Paraphraser for free. | 9.4 | rephrase Rest API | The easiest API to use and consume. Just send your text, the Paraphraser AI will do the language recognition and create modifications for your text. | 200 | 200 Correct response | {"input": "Alexander the Great said: There is nothing impossible to him who will try.", "language": "en", "output": "Alexander the Great said: Nothing is impossible for the one who tries.", "similarity": 0.7226890756302521} | {"type": "object", "properties": {"input": {"type": "string"}, "language": {"type": "string"}, "output": {"type": "string"}, "similarity": {"type": "number"}}} |
85f34f8f-99e0-43c8-b0cb-0933b820612c/eccc7622-bc5c-429f-81b9-0f66d3ab9286/0/0 | Text Analyzer API | null | null | update | updating characters with new one | 200 | remove multiple with whitespace | {"keywords": "is, a", "text": "Th smple text."} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"keywords": {"type": "string"}, "text": {"type": "string"}}, "required": ["keywords", "text"]} |
85f34f8f-99e0-43c8-b0cb-0933b820612c/eccc7622-bc5c-429f-81b9-0f66d3ab9286/0/1 | Text Analyzer API | null | null | update | updating characters with new one | 200 | replace multiple with whitespace | {"keywords": "is, a", "newKeyword": "*", "text": "Th* * * s*mple text."} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"keywords": {"type": "string"}, "newKeyword": {"type": "string"}, "text": {"type": "string"}}, "required": ["keywords", "newKeyword", "text"]} |
85f34f8f-99e0-43c8-b0cb-0933b820612c/40a8c2fa-1795-48e5-893d-cf58b8b67eb9/0/0 | Text Analyzer API | null | null | analyze | Analyze text endpoint | 200 | Example_1 | {"words": {"badWords": {"array": [], "length": 0}, "length": 9, "array": ["This", "is", "a", "text", "This", "one", "a", "second", "test"], "map": {"This": 2, "is": 1, "a": 2, "text": 1, "one": 1, "second": 1, "test": 1}}} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"words": {"type": "object", "properties": {"badWords": {"type": "object", "properties": {"array": {"type": "array"}, "length": {"type": "integer"}}, "required": ["array", "length"]}, "length": {"type": "integer"}, "array": {"type": "array", "items": {"type": "string"}}, "map": {"type": "object", "properties": {"This": {"type": "integer"}, "is": {"type": "integer"}, "a": {"type": "integer"}, "text": {"type": "integer"}, "one": {"type": "integer"}, "second": {"type": "integer"}, "test": {"type": "integer"}}, "required": ["This", "a", "is", "one", "second", "test", "text"]}}, "required": ["array", "badWords", "length", "map"]}}, "required": ["words"]} |
85f34f8f-99e0-43c8-b0cb-0933b820612c/40a8c2fa-1795-48e5-893d-cf58b8b67eb9/0/1 | Text Analyzer API | null | null | analyze | Analyze text endpoint | 200 | New Example | {"language": {"name": "Scots", "code": "sco"}, "search": [{"keyword": "this", "exact": {"sentences": []}, "similar": {"sentences": ["This is a text", "This one a second test"]}}, {"keyword": "is", "exact": {"sentences": ["This is a text", "This one a second test"]}, "similar": {"sentences": []}}], "characters": {"array": {"withoutWhiteSpace": {"array": [".", "T", "T", "a", "a", "c", "d", "e", "e", "e", "e", "h", "h", "i", "i", "i", "n", "n", "o", "o", "s", "s", "s", "s", "s", "t", "t", "t", "t", "x"], "length": 30}, "withWhiteSpace": {"array": [" ", " ", " ", " ", " ", " ", " ", " ", ".", "T", "T", "a", "a", "c", "d", "e", "e", "e", "e", "h", "h", "i", "i", "i", "n", "n", "o", "o", "s", "s", "s", "s", "s", "t", "t", "t", "t", "x"], "length": 38}}, "map": {".": 1, "T": 2, "a": 2, "c": 1, "d": 1, "e": 4, "h": 2, "i": 3, "n": 2, "o": 2, "s": 5, "t": 4, "x": 1}}, "specialChars": {"array": [" ", " ", " ", ".", " ", " ", " ", " ", " "], "length": 9, "map": {" ": 8, ".": 1}}, "words": {"badWords": {"array": [], "length": 0}, "length": 9, "array": ["This", "is", "a", "text", "This", "one", "a", "second", "test"], "map": {"This": 2, "is": 1, "a": 2, "text": 1, "one": 1, "second": 1, "test": 1}}, "hashtag": {"withHashChar": [], "withoutHashChar": []}, "mention": {"withAtChar": [], "withoutAtChar": []}, "sentences": {"array": ["This is a text", "This one a second test"], "length": 2}, "numbers": {"integers": {"array": [], "length": 0}, "floats": {"array": [], "length": 0}}} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"language": {"type": "object", "properties": {"name": {"type": "string"}, "code": {"type": "string"}}, "required": ["code", "name"]}, "search": {"type": "array", "items": {"type": "object", "properties": {"keyword": {"type": "string"}, "exact": {"type": "object", "properties": {"sentences": {"type": "array", "items": {"type": "string"}}}, "required": ["sentences"]}, "similar": {"type": "object", "properties": {"sentences": {"type": "array", "items": {"type": "string"}}}, "required": ["sentences"]}}, "required": ["exact", "keyword", "similar"]}}, "characters": {"type": "object", "properties": {"array": {"type": "object", "properties": {"withoutWhiteSpace": {"type": "object", "properties": {"array": {"type": "array", "items": {"type": "string"}}, "length": {"type": "integer"}}, "required": ["array", "length"]}, "withWhiteSpace": {"type": "object", "properties": {"array": {"type": "array", "items": {"type": "string"}}, "length": {"type": "integer"}}, "required": ["array", "length"]}}, "required": ["withWhiteSpace", "withoutWhiteSpace"]}, "map": {"type": "object", "properties": {".": {"type": "integer"}, "T": {"type": "integer"}, "a": {"type": "integer"}, "c": {"type": "integer"}, "d": {"type": "integer"}, "e": {"type": "integer"}, "h": {"type": "integer"}, "i": {"type": "integer"}, "n": {"type": "integer"}, "o": {"type": "integer"}, "s": {"type": "integer"}, "t": {"type": "integer"}, "x": {"type": "integer"}}, "required": [".", "T", "a", "c", "d", "e", "h", "i", "n", "o", "s", "t", "x"]}}, "required": ["array", "map"]}, "specialChars": {"type": "object", "properties": {"array": {"type": "array", "items": {"type": "string"}}, "length": {"type": "integer"}, "map": {"type": "object", "properties": {" ": {"type": "integer"}, ".": {"type": "integer"}}, "required": [" ", "."]}}, "required": ["array", "length", "map"]}, "words": {"type": "object", "properties": {"badWords": {"type": "object", "properties": {"array": {"type": "array"}, "length": {"type": "integer"}}, "required": ["array", "length"]}, "length": {"type": "integer"}, "array": {"type": "array", "items": {"type": "string"}}, "map": {"type": "object", "properties": {"This": {"type": "integer"}, "is": {"type": "integer"}, "a": {"type": "integer"}, "text": {"type": "integer"}, "one": {"type": "integer"}, "second": {"type": "integer"}, "test": {"type": "integer"}}, "required": ["This", "a", "is", "one", "second", "test", "text"]}}, "required": ["array", "badWords", "length", "map"]}, "hashtag": {"type": "object", "properties": {"withHashChar": {"type": "array"}, "withoutHashChar": {"type": "array"}}, "required": ["withHashChar", "withoutHashChar"]}, "mention": {"type": "object", "properties": {"withAtChar": {"type": "array"}, "withoutAtChar": {"type": "array"}}, "required": ["withAtChar", "withoutAtChar"]}, "sentences": {"type": "object", "properties": {"array": {"type": "array", "items": {"type": "string"}}, "length": {"type": "integer"}}, "required": ["array", "length"]}, "numbers": {"type": "object", "properties": {"integers": {"type": "object", "properties": {"array": {"type": "array"}, "length": {"type": "integer"}}, "required": ["array", "length"]}, "floats": {"type": "object", "properties": {"array": {"type": "array"}, "length": {"type": "integer"}}, "required": ["array", "length"]}}, "required": ["floats", "integers"]}}, "required": ["characters", "hashtag", "language", "mention", "numbers", "search", "sentences", "specialChars", "words"]} |
82664fcf-f43d-4753-825f-f08ea29149e2/57d45302-9483-431a-9662-29ca43b3947b/0/0 | Eventium Cloud NLP | The most accurate NLP services. | 5 | Perform Cognitive Search | The endpoint submits your unstructured text to Titan AI, It analyzes your data and produces structured NLP results in the form of JSON Objects. | 200 | Your unstructured text has been processed | {"header": {"agent_version": "C11", "cloud_version": "C12", "core_version": "C11E", "model_version": "C10D - 05.27.2023", "service": "Answer", "source": "TitanVX Atlas NLP", "url": "https://www.titanvx.com"}, "text": "Planet Earth is approximately 4.5 billion years old."} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"header": {"type": "object", "properties": {"agent_version": {"type": "string"}, "cloud_version": {"type": "string"}, "core_version": {"type": "string"}, "model_version": {"type": "string"}, "service": {"type": "string"}, "source": {"type": "string"}, "url": {"type": "string"}}, "required": ["agent_version", "cloud_version", "core_version", "model_version", "service", "source", "url"]}, "text": {"type": "string"}}, "required": ["header", "text"]} |
82664fcf-f43d-4753-825f-f08ea29149e2/326ddee1-4c18-4f86-83bd-3f78cbaecdd7/0/0 | Eventium Cloud NLP | The most accurate NLP services. | 5 | Visualize Semantic Understanding | The endpoint submits your unstructured text to Titan AI, It analyzes your data and produces structured NLP results in the form of JSON Objects. (GraphViz viewer required to display output) | 200 | Your unstructured text has been processed | {"graphs": [{"sentence": "digraph G {4[shape=\"box\"][style=\"filled\"][fillcolor=\"gold\"][label=\"jumps\"];\n9[shape=\"oval\"][style=\"filled\"][fillcolor=\"violet\"][label=\"is\"];\n14[shape=\"box\"][style=\"filled\"][fillcolor=\"gray\"][label=\"an English-language pangram \u2014\na sentence that contains all the\nletters of the alphabet\"];\n4 -> 9[color=\"blue\"][dir=forward, arrowhead=\"vee\"];\n9 -> 14[dir=forward, arrowhead=\"vee\"][label=\"\"];\n}"}, {"sentence": "digraph G {28[shape=\"box\"][style=\"filled\"][fillcolor=\"gold\"][label=\"The phrase\"];\n31[shape=\"oval\"][style=\"filled\"][fillcolor=\"violet\"][label=\"is commonly used\"];\n32[shape=\"box\"][style=\"filled\"][fillcolor=\"whitesmoke\"][label=\"touch-typing practice\"];\n38[shape=\"oval\"][style=\"filled\"][fillcolor=\"lightpink\"][label=\"testing typewriters and computer\nkeyboards, displaying examples of\nfonts\"];\n39[shape=\"box\"][style=\"filled\"][fillcolor=\"aquamarine2\"][label=\"typewriters and computer keyboards\"];\n44[shape=\"oval\"][style=\"filled\"][fillcolor=\"lightpink\"][label=\"displaying\"];\n45[shape=\"box\"][style=\"filled\"][fillcolor=\"aquamarine2\"][label=\"examples of fonts\"];\n51[shape=\"box\"][style=\"filled\"][fillcolor=\"whitesmoke\"][label=\"other applications involving text\nwhere the use of all letters in\nthe alphabet is desired\"];\n31 -> 28[color=\"blue\"][dir=back, arrowtail=\"vee\"][label=\"\"];\n31 -> 32[dir=both, arrowhead=\"none\", arrowtail=\"none\"][label=\"\"];\n31 -> 38[dir=forward, arrowhead=\"vee\"][label=\"\"];\n38 -> 39[dir=forward, arrowhead=\"vee\"][label=\"\"];\n38 -> 44[dir=forward, arrowhead=\"vee\"];\n44 -> 45[dir=forward, arrowhead=\"vee\"][label=\"\"];\n31 -> 51[arrowhead=\"none\"][label=\"\"];\n}"}], "header": {"agent_version": "C11", "cloud_version": "C12", "core_version": "C11E", "model_version": "C10D - 05.27.2023", "service": "Event Graphs", "source": "TitanVX Atlas NLP", "url": "https://www.titanvx.com"}} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"graphs": {"type": "array", "items": {"type": "object", "properties": {"sentence": {"type": "string"}}, "required": ["sentence"]}}, "header": {"type": "object", "properties": {"agent_version": {"type": "string"}, "cloud_version": {"type": "string"}, "core_version": {"type": "string"}, "model_version": {"type": "string"}, "service": {"type": "string"}, "source": {"type": "string"}, "url": {"type": "string"}}, "required": ["agent_version", "cloud_version", "core_version", "model_version", "service", "source", "url"]}}, "required": ["graphs", "header"]} |
82664fcf-f43d-4753-825f-f08ea29149e2/8291d6dd-bdfe-4ac1-a921-d1cc60488e10/0/0 | Eventium Cloud NLP | The most accurate NLP services. | 5 | Compress Text Length | The endpoint submits your unstructured text to Titan AI, It analyzes your data and produces structured NLP results in the form of JSON Objects. | 200 | Your unstructured text has been processed | {"header": {"agent_version": "C11", "cloud_version": "C11A", "core_version": "C11A", "model_version": "C10D - 05.27.2023", "service": "Reduction", "source": "TitanVX Atlas NLP", "url": "https://www.titanvx.com"}, "text": "The sentence \"The quick brown fox jumps over the lazy dog\" has all the letters of the alphabet. It's used to practice typing, test typewriters and keyboards, show different fonts, and other things where you need to use all the letters."} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"header": {"type": "object", "properties": {"agent_version": {"type": "string"}, "cloud_version": {"type": "string"}, "core_version": {"type": "string"}, "model_version": {"type": "string"}, "service": {"type": "string"}, "source": {"type": "string"}, "url": {"type": "string"}}, "required": ["agent_version", "cloud_version", "core_version", "model_version", "service", "source", "url"]}, "text": {"type": "string"}}, "required": ["header", "text"]} |
82664fcf-f43d-4753-825f-f08ea29149e2/90ba520d-5bba-46b9-ad20-3dbcb70ef8f2/0/0 | Eventium Cloud NLP | The most accurate NLP services. | 5 | Create Summary | The endpoint submits your unstructured text to Titan AI, It analyzes your data and produces structured NLP results in the form of JSON Objects. | 200 | Your unstructured text has been processed | {"header": {"agent_version": "C11", "cloud_version": "C11A", "core_version": "C11A", "model_version": "C10D - 05.27.2023", "service": "Summary", "source": "TitanVX Atlas NLP", "url": "https://www.titanvx.com"}, "text": "\"The quick brown fox jumps over the lazy dog\" is a pangram that is used for touch-typing practice and other applications where the use of all letters in the alphabet is desired."} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"header": {"type": "object", "properties": {"agent_version": {"type": "string"}, "cloud_version": {"type": "string"}, "core_version": {"type": "string"}, "model_version": {"type": "string"}, "service": {"type": "string"}, "source": {"type": "string"}, "url": {"type": "string"}}, "required": ["agent_version", "cloud_version", "core_version", "model_version", "service", "source", "url"]}, "text": {"type": "string"}}, "required": ["header", "text"]} |
82664fcf-f43d-4753-825f-f08ea29149e2/3a4892da-c371-4be0-a417-40e5612cabaa/0/0 | Eventium Cloud NLP | The most accurate NLP services. | 5 | Extract Sentiment | The endpoint submits your unstructured text to Titan AI, It analyzes your data and produces structured NLP results in the form of JSON Objects. | 200 | Your unstructured text has been processed | {"header": {"agent_version": "C11", "cloud_version": "C11A", "core_version": "C11A", "model_version": "C10D - 05.27.2023", "service": "Sentiment", "source": "TitanVX Atlas NLP", "url": "https://www.titanvx.com"}, "score": 0, "text": "0.0"} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"header": {"type": "object", "properties": {"agent_version": {"type": "string"}, "cloud_version": {"type": "string"}, "core_version": {"type": "string"}, "model_version": {"type": "string"}, "service": {"type": "string"}, "source": {"type": "string"}, "url": {"type": "string"}}, "required": ["agent_version", "cloud_version", "core_version", "model_version", "service", "source", "url"]}, "score": {"type": "integer"}, "text": {"type": "string"}}, "required": ["header", "score", "text"]} |
82664fcf-f43d-4753-825f-f08ea29149e2/a81aa168-74cc-4701-a74d-8c58bb55fd94/0/0 | Eventium Cloud NLP | The most accurate NLP services. | 5 | List Possible Futures | The endpoint submits your unstructured text to Titan AI, It analyzes your data and produces structured NLP results in the form of JSON Objects. | 200 | Your unstructured text has been processed | {"header": {"agent_version": "C11", "cloud_version": "C11A", "core_version": "C11A", "model_version": "C10D - 05.27.2023", "service": "Impact", "source": "TitanVX Atlas NLP", "url": "https://www.titanvx.com"}, "list": [{"text": "The phrase becomes obsolete as touch-typing and keyboard technology advances."}, {"text": "The phrase gains popularity as a cultural icon and is used in advertising and merchandise."}, {"text": "The phrase is replaced by a new pangram that includes additional letters added to the English alphabet."}]} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"header": {"type": "object", "properties": {"agent_version": {"type": "string"}, "cloud_version": {"type": "string"}, "core_version": {"type": "string"}, "model_version": {"type": "string"}, "service": {"type": "string"}, "source": {"type": "string"}, "url": {"type": "string"}}, "required": ["agent_version", "cloud_version", "core_version", "model_version", "service", "source", "url"]}, "list": {"type": "array", "items": {"type": "object", "properties": {"text": {"type": "string"}}, "required": ["text"]}}}, "required": ["header", "list"]} |
82664fcf-f43d-4753-825f-f08ea29149e2/4deb09f1-94d5-4786-980c-ea4ce9401434/0/0 | Eventium Cloud NLP | The most accurate NLP services. | 5 | Create Simple List | The endpoint submits your unstructured text to Titan AI, It analyzes your data and produces structured NLP results in the form of JSON Objects. | 200 | Your unstructured text has been processed | {"header": {"agent_version": "C11", "cloud_version": "C12", "core_version": "C11E", "model_version": "C10D - 05.27.2023", "service": "Simplification", "source": "TitanVX Atlas NLP", "url": "https://www.titanvx.com"}, "list": [{"text": "The quick brown fox jumps over the lazy dog"}, {"text": "English-language pangram"}, {"text": "Sentence contains all the letters of the alphabet"}, {"text": "Phrase used for touch-typing practice"}, {"text": "Phrase used for testing typewriters and computer keyboards"}, {"text": "Phrase used for displaying examples of fonts"}, {"text": "Phrase used in other applications involving text"}, {"text": "Use of all letters in the alphabet is desired"}]} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"header": {"type": "object", "properties": {"agent_version": {"type": "string"}, "cloud_version": {"type": "string"}, "core_version": {"type": "string"}, "model_version": {"type": "string"}, "service": {"type": "string"}, "source": {"type": "string"}, "url": {"type": "string"}}, "required": ["agent_version", "cloud_version", "core_version", "model_version", "service", "source", "url"]}, "list": {"type": "array", "items": {"type": "object", "properties": {"text": {"type": "string"}}, "required": ["text"]}}}, "required": ["header", "list"]} |
82664fcf-f43d-4753-825f-f08ea29149e2/4650c4c7-fac4-4493-a2f6-0307a2bf97c3/0/0 | Eventium Cloud NLP | The most accurate NLP services. | 5 | List Named Entities | The endpoint submits your unstructured text to Titan AI, It analyzes your data and produces structured NLP results in the form of JSON Objects. | 200 | Your unstructured text has been processed | {"entities": [{"metadata": [{"id": "West Germanic"}], "name": "English", "type": "Language"}, {"metadata": [{"id": "West Germanic"}], "name": "English", "type": "Language"}], "header": {"agent_version": "C11", "cloud_version": "C11A", "core_version": "C11A", "model_version": "C10D - 05.27.2023", "service": "ner", "source": "TitanVX Atlas NLP", "url": "https://www.titanvx.com"}} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"entities": {"type": "array", "items": {"type": "object", "properties": {"metadata": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}, "name": {"type": "string"}, "type": {"type": "string"}}, "required": ["metadata", "name", "type"]}}, "header": {"type": "object", "properties": {"agent_version": {"type": "string"}, "cloud_version": {"type": "string"}, "core_version": {"type": "string"}, "model_version": {"type": "string"}, "service": {"type": "string"}, "source": {"type": "string"}, "url": {"type": "string"}}, "required": ["agent_version", "cloud_version", "core_version", "model_version", "service", "source", "url"]}}, "required": ["entities", "header"]} |
82664fcf-f43d-4753-825f-f08ea29149e2/07435e31-036b-4e0b-bb2d-815440d18a4c/0/0 | Eventium Cloud NLP | The most accurate NLP services. | 5 | Extract Knowledge Components | The endpoint submits your unstructured text to Titan AI, It analyzes your data and produces structured NLP results in the form of JSON Objects. | 200 | Your unstructured text has been processed | {"header": {"agent_version": "C11", "cloud_version": "C11A", "core_version": "C11A", "model_version": "C10D - 05.27.2023", "service": "components", "source": "TitanVX Atlas NLP", "url": "https://www.titanvx.com"}, "sentences": [{"components": [{"end_token": 3, "parent_index": 4, "start_token": 0, "text": "The quick brown fox", "type": "Subject"}, {"end_token": 8, "parent_index": 9, "start_token": 0, "text": "The quick brown fox jumps over the lazy dog", "type": "Subject"}, {"end_token": 8, "parent_index": 4, "start_token": 5, "text": " over the lazy dog", "type": "Space"}, {"negated": false, "parent_index": 9, "passive": false, "tense": "present", "text": " is", "type": "Verb"}, {"end_token": 25, "parent_index": 9, "start_token": 10, "text": " an Englishlanguage pangram \u2014 sentence that contains all the letters of the alphabet", "type": "Attribute"}, {"end_token": 18, "parent_index": 19, "start_token": 18, "text": " that", "type": "Subject"}, {"negated": false, "parent_index": 17, "passive": false, "tense": "present", "text": " contains", "type": "Verb"}, {"end_token": 25, "parent_index": 19, "start_token": 20, "text": " all the letters of the alphabet", "type": "Direct object"}], "text": "The quick brown fox jumps over the lazy dog is an Englishlanguage pangram \u2014 sentence that contains all the letters of the alphabetMetisAgent163"}, {"components": [{"end_token": 28, "parent_index": 31, "start_token": 27, "text": "The phrase", "type": "Passive subject"}, {"end_token": 29, "parent_index": 31, "start_token": 29, "text": " is", "type": "Auxiliary"}, {"negated": false, "parent_index": 31, "passive": true, "tense": "participle", "text": " is commonly used", "type": "Verb"}, {"negated": false, "parent_index": 36, "passive": false, "tense": "continuous", "text": "typing", "type": "Verb"}, {"negated": false, "parent_index": 31, "passive": false, "tense": "", "text": " testing", "type": "Verb"}, {"end_token": 42, "parent_index": 38, "start_token": 39, "text": " typewriters and computer keyboards", "type": "Direct object"}, {"negated": false, "parent_index": 38, "passive": false, "tense": "continuous", "text": " displaying", "type": "Verb"}, {"end_token": 47, "parent_index": 44, "start_token": 45, "text": " examples of fonts", "type": "Direct object"}, {"negated": false, "parent_index": 51, "passive": false, "tense": "continuous", "text": " involving", "type": "Verb"}, {"end_token": 64, "parent_index": 52, "start_token": 53, "text": " text where the use of all letters in the alphabet is desired", "type": "Direct object"}, {"end_token": 62, "parent_index": 64, "start_token": 55, "text": " the use of all letters in the alphabet", "type": "Passive subject"}, {"end_token": 63, "parent_index": 64, "start_token": 63, "text": " is", "type": "Auxiliary"}, {"negated": false, "parent_index": 53, "passive": true, "tense": "participle", "text": " desired", "type": "Verb"}], "text": "The phrase is commonly used for touchtyping practiceMetisAgent162 testing typewriters and computer keyboardsMetisAgent162 displaying examples of fontsMetisAgent162 and other applications involving text where the use of all letters in the alphabet is desiredMetisAgent163"}]} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"header": {"type": "object", "properties": {"agent_version": {"type": "string"}, "cloud_version": {"type": "string"}, "core_version": {"type": "string"}, "model_version": {"type": "string"}, "service": {"type": "string"}, "source": {"type": "string"}, "url": {"type": "string"}}, "required": ["agent_version", "cloud_version", "core_version", "model_version", "service", "source", "url"]}, "sentences": {"type": "array", "items": {"type": "object", "properties": {"components": {"type": "array", "items": {"type": "object", "properties": {"end_token": {"type": "integer"}, "parent_index": {"type": "integer"}, "start_token": {"type": "integer"}, "text": {"type": "string"}, "type": {"type": "string"}, "negated": {"type": "boolean"}, "passive": {"type": "boolean"}, "tense": {"type": "string"}}, "required": ["parent_index", "text", "type"]}}, "text": {"type": "string"}}, "required": ["components", "text"]}}}, "required": ["header", "sentences"]} |
82664fcf-f43d-4753-825f-f08ea29149e2/2383b4ec-f842-4bfd-b4e6-150014cb5233/0/0 | Eventium Cloud NLP | The most accurate NLP services. | 5 | Visualize Text Dependencies | The endpoint submits your unstructured text to Titan AI, It analyzes your data and produces structured NLP results in the form of JSON Objects. (GraphViz viewer required to display output) | 200 | Your unstructured text has been processed | {"graphs": [{"sentence": "digraph G {0[style=\"filled\",shape=\"octagon\",fillcolor=\"green\", ordering=out,label=\"The\"];1[style=\"filled\",shape=\"pentagon\",fillcolor=\"gray\", ordering=out,label=\"quick\"];2[style=\"filled\",shape=\"pentagon\",fillcolor=\"gray\", ordering=out,label=\"brown\"];3[style=\"filled\",shape=\"box\",fillcolor=\"gold\", ordering=out,label=\"fox\"];4[style=\"filled\",shape=\"oval\",fillcolor=\"cyan\", ordering=out,label=\"jumps\"];5[style=\"filled\",shape=\"septagon\",fillcolor=\"green\", ordering=out,label=\"over\"];6[style=\"filled\",shape=\"octagon\",fillcolor=\"green\", ordering=out,label=\"the\"];7[style=\"filled\",shape=\"pentagon\",fillcolor=\"gray\", ordering=out,label=\"lazy\"];8[style=\"filled\",shape=\"box\",fillcolor=\"gold\", ordering=out,label=\"dog\"];9[style=\"bold, filled\",shape=\"oval\",fillcolor=\"cyan\", ordering=out,label=\"is\"];10[style=\"filled\",shape=\"octagon\",fillcolor=\"green\", ordering=out,label=\"an\"];11[style=\"filled\",shape=\"pentagon\",fillcolor=\"gray\", ordering=out,label=\"English\"];12[style=\"filled\",shape=\"octagon\",fillcolor=\"green\", ordering=out,label=\"-\"];13[style=\"filled\",shape=\"box\",fillcolor=\"gold\", ordering=out,label=\"language\"];14[style=\"filled\",shape=\"box\",fillcolor=\"gold\", ordering=out,label=\"pangram\"];15[style=\"filled\",shape=\"invhouse\",fillcolor=\"green\", ordering=out,label=\"\u2014\"];16[style=\"filled\",shape=\"octagon\",fillcolor=\"green\", ordering=out,label=\"a\"];17[style=\"filled\",shape=\"box\",fillcolor=\"gold\", ordering=out,label=\"sentence\"];18[style=\"filled\",shape=\"pentagon\",fillcolor=\"green\", ordering=out,label=\"that\"];19[style=\"filled\",shape=\"oval\",fillcolor=\"cyan\", ordering=out,label=\"contains\"];20[style=\"filled\",shape=\"box\",fillcolor=\"gold\", ordering=out,label=\"all\"];21[style=\"filled\",shape=\"octagon\",fillcolor=\"green\", ordering=out,label=\"the\"];22[style=\"filled\",shape=\"box\",fillcolor=\"gold\", ordering=out,label=\"letters\"];23[style=\"filled\",shape=\"septagon\",fillcolor=\"green\", ordering=out,label=\"of\"];24[style=\"filled\",shape=\"octagon\",fillcolor=\"green\", ordering=out,label=\"the\"];25[style=\"filled\",shape=\"box\",fillcolor=\"gold\", ordering=out,label=\"alphabet\"];26[style=\"filled\",shape=\"invhouse\",fillcolor=\"green\", ordering=out,label=\".\"];3 -> 0 [label=\"DET\"];\n3 -> 1 [label=\"AMOD\"];\n3 -> 2 [label=\"AMOD\"];\n4 -> 3 [label=\"NSUBJ\"];\n9 -> 4 [label=\"NSUBJ\"];\n4 -> 5 [label=\"PREP\"];\n8 -> 6 [label=\"DET\"];\n8 -> 7 [label=\"AMOD\"];\n5 -> 8 [label=\"POBJ\"];\n14 -> 10 [label=\"DET\"];\n13 -> 11 [label=\"COMPOUND\"];\n13 -> 12 [label=\"PUNCT\"];\n14 -> 13 [label=\"COMPOUND\"];\n9 -> 14 [label=\"ATTR\"];\n16 -> 15 [label=\"PUNCT\"];\n17 -> 16 [label=\"DET\"];\n14 -> 17 [label=\"APPOS\"];\n19 -> 18 [label=\"NSUBJ\"];\n17 -> 19 [label=\"RELCL\"];\n22 -> 20 [label=\"PREDET\"];\n22 -> 21 [label=\"DET\"];\n19 -> 22 [label=\"DOBJ\"];\n22 -> 23 [label=\"PREP\"];\n25 -> 24 [label=\"DET\"];\n23 -> 25 [label=\"POBJ\"];\n9 -> 26 [label=\"PUNCT\"];\n}"}, {"sentence": "digraph G {27[style=\"filled\",shape=\"octagon\",fillcolor=\"green\", ordering=out,label=\"The\"];28[style=\"filled\",shape=\"box\",fillcolor=\"gold\", ordering=out,label=\"phrase\"];29[style=\"filled\",shape=\"oval\",fillcolor=\"cyan\", ordering=out,label=\"is\"];30[style=\"filled\",shape=\"octagon\",fillcolor=\"green\", ordering=out,label=\"commonly\"];31[style=\"bold, filled\",shape=\"oval\",fillcolor=\"cyan\", ordering=out,label=\"used\"];32[style=\"filled\",shape=\"septagon\",fillcolor=\"green\", ordering=out,label=\"for\"];33[style=\"filled\",shape=\"box\",fillcolor=\"gold\", ordering=out,label=\"touch\"];34[style=\"filled\",shape=\"octagon\",fillcolor=\"green\", ordering=out,label=\"-\"];35[style=\"filled\",shape=\"oval\",fillcolor=\"cyan\", ordering=out,label=\"typing\"];36[style=\"filled\",shape=\"box\",fillcolor=\"gold\", ordering=out,label=\"practice\"];37[style=\"filled\",shape=\"invhouse\",fillcolor=\"green\", ordering=out,label=\",\"];38[style=\"filled\",shape=\"box\",fillcolor=\"pink\", ordering=out,label=\"testing\"];39[style=\"filled\",shape=\"box\",fillcolor=\"gold\", ordering=out,label=\"typewriters\"];40[style=\"filled\",shape=\"octagon\",fillcolor=\"green\", ordering=out,label=\"and\"];41[style=\"filled\",shape=\"box\",fillcolor=\"gold\", ordering=out,label=\"computer\"];42[style=\"filled\",shape=\"box\",fillcolor=\"gold\", ordering=out,label=\"keyboards\"];43[style=\"filled\",shape=\"invhouse\",fillcolor=\"green\", ordering=out,label=\",\"];44[style=\"filled\",shape=\"oval\",fillcolor=\"pink\", ordering=out,label=\"displaying\"];45[style=\"filled\",shape=\"box\",fillcolor=\"gold\", ordering=out,label=\"examples\"];46[style=\"filled\",shape=\"septagon\",fillcolor=\"green\", ordering=out,label=\"of\"];47[style=\"filled\",shape=\"box\",fillcolor=\"gold\", ordering=out,label=\"fonts\"];48[style=\"filled\",shape=\"invhouse\",fillcolor=\"green\", ordering=out,label=\",\"];49[style=\"filled\",shape=\"octagon\",fillcolor=\"green\", ordering=out,label=\"and\"];50[style=\"filled\",shape=\"pentagon\",fillcolor=\"gray\", ordering=out,label=\"other\"];51[style=\"filled\",shape=\"box\",fillcolor=\"gold\", ordering=out,label=\"applications\"];52[style=\"filled\",shape=\"oval\",fillcolor=\"cyan\", ordering=out,label=\"involving\"];53[style=\"filled\",shape=\"box\",fillcolor=\"gold\", ordering=out,label=\"text\"];54[style=\"filled\",shape=\"pentagon\",fillcolor=\"green\", ordering=out,label=\"where\"];55[style=\"filled\",shape=\"octagon\",fillcolor=\"green\", ordering=out,label=\"the\"];56[style=\"filled\",shape=\"box\",fillcolor=\"gold\", ordering=out,label=\"use\"];57[style=\"filled\",shape=\"septagon\",fillcolor=\"green\", ordering=out,label=\"of\"];58[style=\"filled\",shape=\"octagon\",fillcolor=\"green\", ordering=out,label=\"all\"];59[style=\"filled\",shape=\"box\",fillcolor=\"gold\", ordering=out,label=\"letters\"];60[style=\"filled\",shape=\"septagon\",fillcolor=\"green\", ordering=out,label=\"in\"];61[style=\"filled\",shape=\"octagon\",fillcolor=\"green\", ordering=out,label=\"the\"];62[style=\"filled\",shape=\"box\",fillcolor=\"gold\", ordering=out,label=\"alphabet\"];63[style=\"filled\",shape=\"oval\",fillcolor=\"cyan\", ordering=out,label=\"is\"];64[style=\"filled\",shape=\"oval\",fillcolor=\"cyan\", ordering=out,label=\"desired\"];65[style=\"filled\",shape=\"invhouse\",fillcolor=\"green\", ordering=out,label=\".\"];28 -> 27 [label=\"DET\"];\n31 -> 28 [label=\"NSUBJPASS\"];\n31 -> 29 [label=\"AUXPASS\"];\n31 -> 30 [label=\"ADVMOD\"];\n31 -> 32 [label=\"PREP\"];\n35 -> 33 [label=\"NPADVMOD\"];\n35 -> 34 [label=\"PUNCT\"];\n36 -> 35 [label=\"AMOD\"];\n32 -> 36 [label=\"POBJ\"];\n38 -> 37 [label=\"PUNCT\"];\n31 -> 38 [label=\"ADVCL\"];\n38 -> 39 [label=\"DOBJ\"];\n42 -> 40 [label=\"CC\"];\n42 -> 41 [label=\"COMPOUND\"];\n39 -> 42 [label=\"CONJ\"];\n44 -> 43 [label=\"PUNCT\"];\n38 -> 44 [label=\"ADVCL\"];\n44 -> 45 [label=\"DOBJ\"];\n45 -> 46 [label=\"PREP\"];\n46 -> 47 [label=\"POBJ\"];\n49 -> 48 [label=\"PUNCT\"];\n51 -> 49 [label=\"CC\"];\n51 -> 50 [label=\"AMOD\"];\n31 -> 51 [label=\"CONJ\"];\n51 -> 52 [label=\"ACL\"];\n52 -> 53 [label=\"DOBJ\"];\n64 -> 54 [label=\"ADVMOD\"];\n56 -> 55 [label=\"DET\"];\n64 -> 56 [label=\"NSUBJPASS\"];\n56 -> 57 [label=\"PREP\"];\n59 -> 58 [label=\"DET\"];\n57 -> 59 [label=\"POBJ\"];\n59 -> 60 [label=\"PREP\"];\n62 -> 61 [label=\"DET\"];\n60 -> 62 [label=\"POBJ\"];\n64 -> 63 [label=\"AUXPASS\"];\n53 -> 64 [label=\"RELCL\"];\n31 -> 65 [label=\"PUNCT\"];\n}"}], "header": {"agent_version": "C11", "cloud_version": "C12", "core_version": "C11E", "model_version": "C10D - 05.27.2023", "service": "Event Graphs", "source": "TitanVX Atlas NLP", "url": "https://www.titanvx.com"}} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"graphs": {"type": "array", "items": {"type": "object", "properties": {"sentence": {"type": "string"}}, "required": ["sentence"]}}, "header": {"type": "object", "properties": {"agent_version": {"type": "string"}, "cloud_version": {"type": "string"}, "core_version": {"type": "string"}, "model_version": {"type": "string"}, "service": {"type": "string"}, "source": {"type": "string"}, "url": {"type": "string"}}, "required": ["agent_version", "cloud_version", "core_version", "model_version", "service", "source", "url"]}}, "required": ["graphs", "header"]} |
82664fcf-f43d-4753-825f-f08ea29149e2/0f7b1eac-af50-4b17-80c3-d568e48c5c29/0/0 | Eventium Cloud NLP | The most accurate NLP services. | 5 | Correct Grammar | The endpoint submits your unstructured text to Titan AI, It analyzes your data and produces structured NLP results in the form of JSON Objects. | 200 | Your unstructured text has been processed | {"header": {"agent_version": "C11", "cloud_version": "C11A", "core_version": "C11A", "model_version": "C10D - 05.27.2023", "service": "Grammar", "source": "TitanVX Atlas NLP", "url": "https://www.titanvx.com"}, "text": "The correct text is:\n\n\"The quick brown fox jumped over the lazy dog\" is an English-language pangram \u2013 a sentence that contains all the letters of the alphabet. The phrase is commonly used for touch-typing practice, testing typewriters and computer keyboards, displaying examples of fonts, and other applications involving text where the use of all letters in the alphabet is desired."} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"header": {"type": "object", "properties": {"agent_version": {"type": "string"}, "cloud_version": {"type": "string"}, "core_version": {"type": "string"}, "model_version": {"type": "string"}, "service": {"type": "string"}, "source": {"type": "string"}, "url": {"type": "string"}}, "required": ["agent_version", "cloud_version", "core_version", "model_version", "service", "source", "url"]}, "text": {"type": "string"}}, "required": ["header", "text"]} |
82664fcf-f43d-4753-825f-f08ea29149e2/d462511c-ab17-455e-b2be-9a46f00d36c8/0/0 | Eventium Cloud NLP | The most accurate NLP services. | 5 | Get Parts Of Speech | The endpoint submits your unstructured text to Titan AI, It analyzes your data and produces structured NLP results in the form of JSON Objects. | 200 | Your unstructured text has been processed | {"header": {"agent_version": "C11", "cloud_version": "C11A", "core_version": "C11A", "model_version": "C10D - 05.27.2023", "service": "pos", "source": "TitanVX Atlas NLP", "url": "https://www.titanvx.com"}, "sentences": [{"text": "The quick brown fox jumps over the lazy dog is an Englishlanguage pangram \u2014 sentence that contains all the letters of the alphabetMetisAgent163", "tokens": [{"dendency": "DET", "depth": 3, "index": 0, "lemma": "the", "parent": "fox", "parent_index": 3, "part_of_speech": "DT", "text": "The"}, {"dendency": "AMOD", "depth": 3, "index": 1, "lemma": "quick", "parent": "fox", "parent_index": 3, "part_of_speech": "JJ", "text": "quick"}, {"dendency": "AMOD", "depth": 3, "index": 2, "lemma": "brown", "parent": "fox", "parent_index": 3, "part_of_speech": "JJ", "text": "brown"}, {"dendency": "NSUBJ", "depth": 2, "index": 3, "lemma": "fox", "parent": "jumps", "parent_index": 4, "part_of_speech": "NN", "text": "fox"}, {"dendency": "NSUBJ", "depth": 1, "index": 4, "lemma": "jump", "parent": "is", "parent_index": 9, "part_of_speech": "VBZ", "text": "jumps"}, {"dendency": "PREP", "depth": 2, "index": 5, "lemma": "over", "parent": "jumps", "parent_index": 4, "part_of_speech": "IN", "text": "over"}, {"dendency": "DET", "depth": 4, "index": 6, "lemma": "the", "parent": "dog", "parent_index": 8, "part_of_speech": "DT", "text": "the"}, {"dendency": "AMOD", "depth": 4, "index": 7, "lemma": "lazy", "parent": "dog", "parent_index": 8, "part_of_speech": "JJ", "text": "lazy"}, {"dendency": "POBJ", "depth": 3, "index": 8, "lemma": "dog", "parent": "over", "parent_index": 5, "part_of_speech": "NN", "text": "dog"}, {"dendency": "ROOT", "depth": 0, "index": 9, "lemma": "be", "part_of_speech": "VBZ", "text": "is"}, {"dendency": "DET", "depth": 2, "index": 10, "lemma": "an", "parent": "pangram", "parent_index": 14, "part_of_speech": "DT", "text": "an"}, {"dendency": "COMPOUND", "depth": 3, "index": 11, "lemma": "english", "ner_type": "Language", "parent": "language", "parent_index": 13, "part_of_speech": "JJ", "text": "English"}, {"dendency": "PUNCT", "depth": 3, "index": 12, "lemma": "", "parent": "language", "parent_index": 13, "part_of_speech": "HYPH", "text": ""}, {"dendency": "COMPOUND", "depth": 2, "index": 13, "lemma": "language", "parent": "pangram", "parent_index": 14, "part_of_speech": "NN", "text": "language"}, {"dendency": "ATTR", "depth": 1, "index": 14, "lemma": "pangram", "parent": "is", "parent_index": 9, "part_of_speech": "NN", "text": "pangram"}, {"dendency": "PUNCT", "depth": 4, "index": 15, "lemma": "\u2014", "parent": "", "parent_index": 16, "part_of_speech": "COLON", "text": "\u2014"}, {"dendency": "DET", "depth": 3, "index": 16, "lemma": "", "parent": "sentence", "parent_index": 17, "part_of_speech": "DT", "text": ""}, {"dendency": "APPOS", "depth": 2, "index": 17, "lemma": "sentence", "parent": "pangram", "parent_index": 14, "part_of_speech": "NN", "text": "sentence"}, {"dendency": "NSUBJ", "depth": 4, "index": 18, "lemma": "that", "parent": "contains", "parent_index": 19, "part_of_speech": "WDT", "text": "that"}, {"dendency": "RELCL", "depth": 3, "index": 19, "lemma": "contain", "parent": "sentence", "parent_index": 17, "part_of_speech": "VBZ", "text": "contains"}, {"dendency": "PREDET", "depth": 5, "index": 20, "lemma": "all", "parent": "letters", "parent_index": 22, "part_of_speech": "PDT", "text": "all"}, {"dendency": "DET", "depth": 5, "index": 21, "lemma": "the", "parent": "letters", "parent_index": 22, "part_of_speech": "DT", "text": "the"}, {"dendency": "DOBJ", "depth": 4, "index": 22, "lemma": "letter", "parent": "contains", "parent_index": 19, "part_of_speech": "NNS", "text": "letters"}, {"dendency": "PREP", "depth": 5, "index": 23, "lemma": "of", "parent": "letters", "parent_index": 22, "part_of_speech": "IN", "text": "of"}, {"dendency": "DET", "depth": 7, "index": 24, "lemma": "the", "parent": "alphabet", "parent_index": 25, "part_of_speech": "DT", "text": "the"}, {"dendency": "POBJ", "depth": 6, "index": 25, "lemma": "alphabet", "parent": "of", "parent_index": 23, "part_of_speech": "NN", "text": "alphabet"}, {"dendency": "PUNCT", "depth": 1, "index": 26, "lemma": "MetisAgent163", "parent": "is", "parent_index": 9, "part_of_speech": "PERIOD", "text": "MetisAgent163"}]}, {"text": "The phrase is commonly used for touchtyping practiceMetisAgent162 testing typewriters and computer keyboardsMetisAgent162 displaying examples of fontsMetisAgent162 and other applications involving text where the use of all letters in the alphabet is desiredMetisAgent163", "tokens": [{"dendency": "DET", "depth": 2, "index": 27, "lemma": "the", "parent": "phrase", "parent_index": 28, "part_of_speech": "DT", "text": "The"}, {"dendency": "NSUBJPASS", "depth": 1, "index": 28, "lemma": "phrase", "parent": "used", "parent_index": 31, "part_of_speech": "NN", "text": "phrase"}, {"dendency": "AUXPASS", "depth": 1, "index": 29, "lemma": "be", "parent": "used", "parent_index": 31, "part_of_speech": "VBZ", "text": "is"}, {"dendency": "ADVMOD", "depth": 1, "index": 30, "lemma": "commonly", "parent": "used", "parent_index": 31, "part_of_speech": "RB", "text": "commonly"}, {"dendency": "ROOT", "depth": 0, "index": 31, "lemma": "use", "part_of_speech": "VBN", "text": "used"}, {"dendency": "PREP", "depth": 1, "index": 32, "lemma": "for", "parent": "used", "parent_index": 31, "part_of_speech": "IN", "text": "for"}, {"dendency": "NPADVMOD", "depth": 4, "index": 33, "lemma": "touch", "parent": "typing", "parent_index": 35, "part_of_speech": "NN", "text": "touch"}, {"dendency": "PUNCT", "depth": 4, "index": 34, "lemma": "", "parent": "typing", "parent_index": 35, "part_of_speech": "HYPH", "text": ""}, {"dendency": "AMOD", "depth": 3, "index": 35, "lemma": "type", "parent": "practice", "parent_index": 36, "part_of_speech": "VBG", "text": "typing"}, {"dendency": "POBJ", "depth": 2, "index": 36, "lemma": "practice", "parent": "for", "parent_index": 32, "part_of_speech": "NN", "text": "practice"}, {"dendency": "PUNCT", "depth": 2, "index": 37, "lemma": "MetisAgent162", "parent": "testing", "parent_index": 38, "part_of_speech": "COMMA", "text": "MetisAgent162"}, {"dendency": "ADVCL", "depth": 1, "index": 38, "lemma": "testing", "parent": "used", "parent_index": 31, "part_of_speech": "NN", "text": "testing"}, {"dendency": "DOBJ", "depth": 2, "index": 39, "lemma": "typewriter", "parent": "testing", "parent_index": 38, "part_of_speech": "NNS", "text": "typewriters"}, {"dendency": "CC", "depth": 4, "index": 40, "lemma": "and", "parent": "keyboards", "parent_index": 42, "part_of_speech": "CC", "text": "and"}, {"dendency": "COMPOUND", "depth": 4, "index": 41, "lemma": "computer", "parent": "keyboards", "parent_index": 42, "part_of_speech": "NN", "text": "computer"}, {"dendency": "CONJ", "depth": 3, "index": 42, "lemma": "keyboard", "parent": "typewriters", "parent_index": 39, "part_of_speech": "NNS", "text": "keyboards"}, {"dendency": "PUNCT", "depth": 3, "index": 43, "lemma": "MetisAgent162", "parent": "displaying", "parent_index": 44, "part_of_speech": "COMMA", "text": "MetisAgent162"}, {"dendency": "ADVCL", "depth": 2, "index": 44, "lemma": "display", "parent": "testing", "parent_index": 38, "part_of_speech": "VBG", "text": "displaying"}, {"dendency": "DOBJ", "depth": 3, "index": 45, "lemma": "example", "parent": "displaying", "parent_index": 44, "part_of_speech": "NNS", "text": "examples"}, {"dendency": "PREP", "depth": 4, "index": 46, "lemma": "of", "parent": "examples", "parent_index": 45, "part_of_speech": "IN", "text": "of"}, {"dendency": "POBJ", "depth": 5, "index": 47, "lemma": "font", "parent": "of", "parent_index": 46, "part_of_speech": "NNS", "text": "fonts"}, {"dendency": "PUNCT", "depth": 3, "index": 48, "lemma": "MetisAgent162", "parent": "and", "parent_index": 49, "part_of_speech": "COMMA", "text": "MetisAgent162"}, {"dendency": "CC", "depth": 2, "index": 49, "lemma": "and", "parent": "applications", "parent_index": 51, "part_of_speech": "CC", "text": "and"}, {"dendency": "AMOD", "depth": 2, "index": 50, "lemma": "other", "parent": "applications", "parent_index": 51, "part_of_speech": "JJ", "text": "other"}, {"dendency": "CONJ", "depth": 1, "index": 51, "lemma": "application", "parent": "used", "parent_index": 31, "part_of_speech": "NNS", "text": "applications"}, {"dendency": "ACL", "depth": 2, "index": 52, "lemma": "involve", "parent": "applications", "parent_index": 51, "part_of_speech": "VBG", "text": "involving"}, {"dendency": "DOBJ", "depth": 3, "index": 53, "lemma": "text", "parent": "involving", "parent_index": 52, "part_of_speech": "NN", "text": "text"}, {"dendency": "ADVMOD", "depth": 5, "index": 54, "lemma": "where", "parent": "desired", "parent_index": 64, "part_of_speech": "WRB", "text": "where"}, {"dendency": "DET", "depth": 6, "index": 55, "lemma": "the", "parent": "use", "parent_index": 56, "part_of_speech": "DT", "text": "the"}, {"dendency": "NSUBJPASS", "depth": 5, "index": 56, "lemma": "use", "parent": "desired", "parent_index": 64, "part_of_speech": "NN", "text": "use"}, {"dendency": "PREP", "depth": 6, "index": 57, "lemma": "of", "parent": "use", "parent_index": 56, "part_of_speech": "IN", "text": "of"}, {"dendency": "DET", "depth": 8, "index": 58, "lemma": "all", "parent": "letters", "parent_index": 59, "part_of_speech": "DT", "text": "all"}, {"dendency": "POBJ", "depth": 7, "index": 59, "lemma": "letter", "parent": "of", "parent_index": 57, "part_of_speech": "NNS", "text": "letters"}, {"dendency": "PREP", "depth": 8, "index": 60, "lemma": "in", "parent": "letters", "parent_index": 59, "part_of_speech": "IN", "text": "in"}, {"dendency": "DET", "depth": 10, "index": 61, "lemma": "the", "parent": "alphabet", "parent_index": 62, "part_of_speech": "DT", "text": "the"}, {"dendency": "POBJ", "depth": 9, "index": 62, "lemma": "alphabet", "parent": "in", "parent_index": 60, "part_of_speech": "NN", "text": "alphabet"}, {"dendency": "AUXPASS", "depth": 5, "index": 63, "lemma": "be", "parent": "desired", "parent_index": 64, "part_of_speech": "VBZ", "text": "is"}, {"dendency": "RELCL", "depth": 4, "index": 64, "lemma": "desire", "parent": "text", "parent_index": 53, "part_of_speech": "VBN", "text": "desired"}, {"dendency": "PUNCT", "depth": 1, "index": 65, "lemma": "MetisAgent163", "parent": "used", "parent_index": 31, "part_of_speech": "PERIOD", "text": "MetisAgent163"}]}, {"text": "The quick brown fox jumps over the lazy dog is an Englishlanguage pangram \u2014 sentence that contains all the letters of the alphabetMetisAgent163", "tokens": [{"dendency": "DET", "depth": 3, "index": 66, "lemma": "the", "parent": "fox", "parent_index": 69, "part_of_speech": "DT", "text": "The"}, {"dendency": "AMOD", "depth": 3, "index": 67, "lemma": "quick", "parent": "fox", "parent_index": 69, "part_of_speech": "JJ", "text": "quick"}, {"dendency": "AMOD", "depth": 3, "index": 68, "lemma": "brown", "parent": "fox", "parent_index": 69, "part_of_speech": "JJ", "text": "brown"}, {"dendency": "NSUBJ", "depth": 2, "index": 69, "lemma": "fox", "parent": "jumps", "parent_index": 70, "part_of_speech": "NN", "text": "fox"}, {"dendency": "NSUBJ", "depth": 1, "index": 70, "lemma": "jump", "parent": "is", "parent_index": 75, "part_of_speech": "VBZ", "text": "jumps"}, {"dendency": "PREP", "depth": 2, "index": 71, "lemma": "over", "parent": "jumps", "parent_index": 70, "part_of_speech": "IN", "text": "over"}, {"dendency": "DET", "depth": 4, "index": 72, "lemma": "the", "parent": "dog", "parent_index": 74, "part_of_speech": "DT", "text": "the"}, {"dendency": "AMOD", "depth": 4, "index": 73, "lemma": "lazy", "parent": "dog", "parent_index": 74, "part_of_speech": "JJ", "text": "lazy"}, {"dendency": "POBJ", "depth": 3, "index": 74, "lemma": "dog", "parent": "over", "parent_index": 71, "part_of_speech": "NN", "text": "dog"}, {"dendency": "ROOT", "depth": 0, "index": 75, "lemma": "be", "part_of_speech": "VBZ", "text": "is"}, {"dendency": "DET", "depth": 2, "index": 76, "lemma": "an", "parent": "pangram", "parent_index": 80, "part_of_speech": "DT", "text": "an"}, {"dendency": "COMPOUND", "depth": 3, "index": 77, "lemma": "english", "ner_type": "Language", "parent": "language", "parent_index": 79, "part_of_speech": "JJ", "text": "English"}, {"dendency": "PUNCT", "depth": 3, "index": 78, "lemma": "", "parent": "language", "parent_index": 79, "part_of_speech": "HYPH", "text": ""}, {"dendency": "COMPOUND", "depth": 2, "index": 79, "lemma": "language", "parent": "pangram", "parent_index": 80, "part_of_speech": "NN", "text": "language"}, {"dendency": "ATTR", "depth": 1, "index": 80, "lemma": "pangram", "parent": "is", "parent_index": 75, "part_of_speech": "NN", "text": "pangram"}, {"dendency": "PUNCT", "depth": 4, "index": 81, "lemma": "\u2014", "parent": "", "parent_index": 82, "part_of_speech": "COLON", "text": "\u2014"}, {"dendency": "DET", "depth": 3, "index": 82, "lemma": "", "parent": "sentence", "parent_index": 83, "part_of_speech": "DT", "text": ""}, {"dendency": "APPOS", "depth": 2, "index": 83, "lemma": "sentence", "parent": "pangram", "parent_index": 80, "part_of_speech": "NN", "text": "sentence"}, {"dendency": "NSUBJ", "depth": 4, "index": 84, "lemma": "that", "parent": "contains", "parent_index": 85, "part_of_speech": "WDT", "text": "that"}, {"dendency": "RELCL", "depth": 3, "index": 85, "lemma": "contain", "parent": "sentence", "parent_index": 83, "part_of_speech": "VBZ", "text": "contains"}, {"dendency": "PREDET", "depth": 5, "index": 86, "lemma": "all", "parent": "letters", "parent_index": 88, "part_of_speech": "PDT", "text": "all"}, {"dendency": "DET", "depth": 5, "index": 87, "lemma": "the", "parent": "letters", "parent_index": 88, "part_of_speech": "DT", "text": "the"}, {"dendency": "DOBJ", "depth": 4, "index": 88, "lemma": "letter", "parent": "contains", "parent_index": 85, "part_of_speech": "NNS", "text": "letters"}, {"dendency": "PREP", "depth": 5, "index": 89, "lemma": "of", "parent": "letters", "parent_index": 88, "part_of_speech": "IN", "text": "of"}, {"dendency": "DET", "depth": 7, "index": 90, "lemma": "the", "parent": "alphabet", "parent_index": 91, "part_of_speech": "DT", "text": "the"}, {"dendency": "POBJ", "depth": 6, "index": 91, "lemma": "alphabet", "parent": "of", "parent_index": 89, "part_of_speech": "NN", "text": "alphabet"}, {"dendency": "PUNCT", "depth": 1, "index": 92, "lemma": "MetisAgent163", "parent": "is", "parent_index": 75, "part_of_speech": "PERIOD", "text": "MetisAgent163"}]}, {"text": "The phrase is commonly used for touchtyping practiceMetisAgent162 testing typewriters and computer keyboardsMetisAgent162 displaying examples of fontsMetisAgent162 and other applications involving text where the use of all letters in the alphabet is desiredMetisAgent163", "tokens": [{"dendency": "DET", "depth": 2, "index": 93, "lemma": "the", "parent": "phrase", "parent_index": 94, "part_of_speech": "DT", "text": "The"}, {"dendency": "NSUBJPASS", "depth": 1, "index": 94, "lemma": "phrase", "parent": "used", "parent_index": 97, "part_of_speech": "NN", "text": "phrase"}, {"dendency": "AUXPASS", "depth": 1, "index": 95, "lemma": "be", "parent": "used", "parent_index": 97, "part_of_speech": "VBZ", "text": "is"}, {"dendency": "ADVMOD", "depth": 1, "index": 96, "lemma": "commonly", "parent": "used", "parent_index": 97, "part_of_speech": "RB", "text": "commonly"}, {"dendency": "ROOT", "depth": 0, "index": 97, "lemma": "use", "part_of_speech": "VBN", "text": "used"}, {"dendency": "PREP", "depth": 1, "index": 98, "lemma": "for", "parent": "used", "parent_index": 97, "part_of_speech": "IN", "text": "for"}, {"dendency": "NPADVMOD", "depth": 4, "index": 99, "lemma": "touch", "parent": "typing", "parent_index": 101, "part_of_speech": "NN", "text": "touch"}, {"dendency": "PUNCT", "depth": 4, "index": 100, "lemma": "", "parent": "typing", "parent_index": 101, "part_of_speech": "HYPH", "text": ""}, {"dendency": "AMOD", "depth": 3, "index": 101, "lemma": "type", "parent": "practice", "parent_index": 102, "part_of_speech": "VBG", "text": "typing"}, {"dendency": "POBJ", "depth": 2, "index": 102, "lemma": "practice", "parent": "for", "parent_index": 98, "part_of_speech": "NN", "text": "practice"}, {"dendency": "PUNCT", "depth": 2, "index": 103, "lemma": "MetisAgent162", "parent": "testing", "parent_index": 104, "part_of_speech": "COMMA", "text": "MetisAgent162"}, {"dendency": "ADVCL", "depth": 1, "index": 104, "lemma": "testing", "parent": "used", "parent_index": 97, "part_of_speech": "NN", "text": "testing"}, {"dendency": "DOBJ", "depth": 2, "index": 105, "lemma": "typewriter", "parent": "testing", "parent_index": 104, "part_of_speech": "NNS", "text": "typewriters"}, {"dendency": "CC", "depth": 4, "index": 106, "lemma": "and", "parent": "keyboards", "parent_index": 108, "part_of_speech": "CC", "text": "and"}, {"dendency": "COMPOUND", "depth": 4, "index": 107, "lemma": "computer", "parent": "keyboards", "parent_index": 108, "part_of_speech": "NN", "text": "computer"}, {"dendency": "CONJ", "depth": 3, "index": 108, "lemma": "keyboard", "parent": "typewriters", "parent_index": 105, "part_of_speech": "NNS", "text": "keyboards"}, {"dendency": "PUNCT", "depth": 3, "index": 109, "lemma": "MetisAgent162", "parent": "displaying", "parent_index": 110, "part_of_speech": "COMMA", "text": "MetisAgent162"}, {"dendency": "ADVCL", "depth": 2, "index": 110, "lemma": "display", "parent": "testing", "parent_index": 104, "part_of_speech": "VBG", "text": "displaying"}, {"dendency": "DOBJ", "depth": 3, "index": 111, "lemma": "example", "parent": "displaying", "parent_index": 110, "part_of_speech": "NNS", "text": "examples"}, {"dendency": "PREP", "depth": 4, "index": 112, "lemma": "of", "parent": "examples", "parent_index": 111, "part_of_speech": "IN", "text": "of"}, {"dendency": "POBJ", "depth": 5, "index": 113, "lemma": "font", "parent": "of", "parent_index": 112, "part_of_speech": "NNS", "text": "fonts"}, {"dendency": "PUNCT", "depth": 3, "index": 114, "lemma": "MetisAgent162", "parent": "and", "parent_index": 115, "part_of_speech": "COMMA", "text": "MetisAgent162"}, {"dendency": "CC", "depth": 2, "index": 115, "lemma": "and", "parent": "applications", "parent_index": 117, "part_of_speech": "CC", "text": "and"}, {"dendency": "AMOD", "depth": 2, "index": 116, "lemma": "other", "parent": "applications", "parent_index": 117, "part_of_speech": "JJ", "text": "other"}, {"dendency": "CONJ", "depth": 1, "index": 117, "lemma": "application", "parent": "used", "parent_index": 97, "part_of_speech": "NNS", "text": "applications"}, {"dendency": "ACL", "depth": 2, "index": 118, "lemma": "involve", "parent": "applications", "parent_index": 117, "part_of_speech": "VBG", "text": "involving"}, {"dendency": "DOBJ", "depth": 3, "index": 119, "lemma": "text", "parent": "involving", "parent_index": 118, "part_of_speech": "NN", "text": "text"}, {"dendency": "ADVMOD", "depth": 5, "index": 120, "lemma": "where", "parent": "desired", "parent_index": 130, "part_of_speech": "WRB", "text": "where"}, {"dendency": "DET", "depth": 6, "index": 121, "lemma": "the", "parent": "use", "parent_index": 122, "part_of_speech": "DT", "text": "the"}, {"dendency": "NSUBJPASS", "depth": 5, "index": 122, "lemma": "use", "parent": "desired", "parent_index": 130, "part_of_speech": "NN", "text": "use"}, {"dendency": "PREP", "depth": 6, "index": 123, "lemma": "of", "parent": "use", "parent_index": 122, "part_of_speech": "IN", "text": "of"}, {"dendency": "DET", "depth": 8, "index": 124, "lemma": "all", "parent": "letters", "parent_index": 125, "part_of_speech": "DT", "text": "all"}, {"dendency": "POBJ", "depth": 7, "index": 125, "lemma": "letter", "parent": "of", "parent_index": 123, "part_of_speech": "NNS", "text": "letters"}, {"dendency": "PREP", "depth": 8, "index": 126, "lemma": "in", "parent": "letters", "parent_index": 125, "part_of_speech": "IN", "text": "in"}, {"dendency": "DET", "depth": 10, "index": 127, "lemma": "the", "parent": "alphabet", "parent_index": 128, "part_of_speech": "DT", "text": "the"}, {"dendency": "POBJ", "depth": 9, "index": 128, "lemma": "alphabet", "parent": "in", "parent_index": 126, "part_of_speech": "NN", "text": "alphabet"}, {"dendency": "AUXPASS", "depth": 5, "index": 129, "lemma": "be", "parent": "desired", "parent_index": 130, "part_of_speech": "VBZ", "text": "is"}, {"dendency": "RELCL", "depth": 4, "index": 130, "lemma": "desire", "parent": "text", "parent_index": 119, "part_of_speech": "VBN", "text": "desired"}, {"dendency": "PUNCT", "depth": 1, "index": 131, "lemma": "MetisAgent163", "parent": "used", "parent_index": 97, "part_of_speech": "PERIOD", "text": "MetisAgent163"}]}]} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"header": {"type": "object", "properties": {"agent_version": {"type": "string"}, "cloud_version": {"type": "string"}, "core_version": {"type": "string"}, "model_version": {"type": "string"}, "service": {"type": "string"}, "source": {"type": "string"}, "url": {"type": "string"}}, "required": ["agent_version", "cloud_version", "core_version", "model_version", "service", "source", "url"]}, "sentences": {"type": "array", "items": {"type": "object", "properties": {"text": {"type": "string"}, "tokens": {"type": "array", "items": {"type": "object", "properties": {"dendency": {"type": "string"}, "depth": {"type": "integer"}, "index": {"type": "integer"}, "lemma": {"type": "string"}, "parent": {"type": "string"}, "parent_index": {"type": "integer"}, "part_of_speech": {"type": "string"}, "text": {"type": "string"}, "ner_type": {"type": "string"}}, "required": ["dendency", "depth", "index", "lemma", "part_of_speech", "text"]}}}, "required": ["text", "tokens"]}}}, "required": ["header", "sentences"]} |
82664fcf-f43d-4753-825f-f08ea29149e2/3365891f-c788-440b-81f4-ad73aab90f63/0/0 | Eventium Cloud NLP | The most accurate NLP services. | 5 | Translate Text | The endpoint submits your unstructured text to Titan AI, It analyzes your data and produces structured NLP results in the form of JSON Objects. | 200 | Your unstructured text has been processed | {"header": {"agent_version": "C11", "cloud_version": "C11A", "core_version": "C11A", "model_version": "C10D - 05.27.2023", "service": "Translation", "source": "TitanVX Atlas NLP", "url": "https://www.titanvx.com"}, "text": "Le param\u00e8tre par d\u00e9faut est r\u00e9gl\u00e9 sur l'anglais : \"The quick brown fox jumps over the lazy dog\" est un pangramme en langue anglaise - une phrase qui contient toutes les lettres de l'alphabet. Cette expression est couramment utilis\u00e9e pour s'entra\u00eener \u00e0 la frappe au clavier, tester des machines \u00e0 \u00e9crire et des claviers d'ordinateur, afficher des exemples de polices de caract\u00e8res et d'autres applications impliquant du texte o\u00f9 l'utilisation de toutes les lettres de l'alphabet est souhait\u00e9e."} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"header": {"type": "object", "properties": {"agent_version": {"type": "string"}, "cloud_version": {"type": "string"}, "core_version": {"type": "string"}, "model_version": {"type": "string"}, "service": {"type": "string"}, "source": {"type": "string"}, "url": {"type": "string"}}, "required": ["agent_version", "cloud_version", "core_version", "model_version", "service", "source", "url"]}, "text": {"type": "string"}}, "required": ["header", "text"]} |
a93aed17-9b91-481d-a653-65cc91ba2753/efc8463c-e931-4ea3-ad7d-c6774e2f8bff/0/0 | Text-Monkey Summarizer | Text / URL summarization API | 0.3 | Summarize URL | Summarizes a URL or a text string. | 200 | Summarize URL response | {"authors": ["Vinita Ramani"], "datePublished": "2020-05-27T08:38:35+08:00", "publisher": "RICE", "snippets": ["The four parks draw just over 5 million visitors annually, and account for 15 percent of all guests who come to the parks.", "But mental preparedness has been a whole other ball game.", "For many of the staff, when the parks had to close, there was a feeling of acceptance and mild shock.", "\u201cAs visitorship started to decrease \u2026 there was a sense of inevitability that the parks might be closed.", "A senior executive and wildlife guide at WRS, he began preparing his tours team for the transition to new duties."], "summary": "Nearly 15,000 animals representing 1,040 species\u2014a good proportion of which are globally threatened\u2014are cared for across the four parks by over 1,000 full-time staff.The four parks draw just over 5 million visitors annually, and\n\naccount for 15 percent of all guests who come to the parks.The organisation\u2019s budget has also been reprioritised to safeguard jobs, manage animals at the parks, and continue to fund projects that protect threatened species in the wild.To mitigate the immediate impact, senior management have taken up to a 15 percent pay cut from February till the end of the year.A senior executive and wildlife guide at WRS, he began preparing his tours team for the transition to new duties.The impact of border closures and subsequent worldwide lockdowns hit the organisation as early as February.", "title": "Life During the Lockdown At Wildlife Reserves Singapore"} | {"properties": {"authors": {"items": {"type": "string"}, "type": "array"}, "datePublished": {"format": "date-time", "type": "string"}, "publisher": {"type": "string"}, "snippets": {"items": {"type": "string"}, "type": "array"}, "summary": {"type": "string"}, "title": {"type": "string"}}, "type": "object"} |
a93aed17-9b91-481d-a653-65cc91ba2753/28c5c585-d6c0-46a1-bb11-849c1d2facee/0/0 | Text-Monkey Summarizer | Text / URL summarization API | 0.3 | Summarize text | Summarizes a given text | 200 | Successful response | {"snippets": ["The larger Mandai project aside, it\u2019s clear that life at WRS, like much of the world, will be permanently altered by the pandemic.", "Cashless payments will become the norm and the parks will likely operate on reduced capacity, with a reorganisation of activities that may cause crowds to gather.", "\u201cThe experience of visiting our parks will be very different for quite a while after our parks are allowed to reopen.", "In this new reality, safe distancing measures and social responsibilities will be the order of the day,\u201d Dr. Cheng said."], "summary": "While the Mandai Wildlife bridge is now in operation to ensure animals are not affected by ongoing construction, it\u2019s unclear when Singapore\u2019s overall building industry will come to life again for the new bird park and West Arrival Node to see an opening in 2022, and for the other projects on the site to be progressively finished by 2024.This could cause inevitable delays to the ambitious plan for a \u201cmega nature and wildlife destination\u201d in Singapore, undertaken by Mandai Park Development, which will see the Mandai area\u2014currently home to the Singapore Zoo, Night Safari and River Safari\u2014expanded to include the relocated bird park, a rainforest park, an indoor attraction and an eco-friendly resort.That means when the four parks open their doors to visitors once again, it will be mandatory for both staff and outsiders to log in via Safe Entry, do temperature screenings, frequently sanitise and disinfect areas, practice safe distancing and wear masks for the duration of the visit or work day.In this new reality, safe distancing measures and social responsibilities will be the order of the day,\u201d Dr.Cashless payments will become the norm and the parks will likely operate on reduced capacity, with a reorganisation of activities that may cause crowds to gather.\u201cThe experience of visiting our parks will be very different for quite a while after our parks are allowed to reopen."} | {"properties": {"snippets": {"items": {"type": "string"}, "type": "array"}, "summary": {"type": "string"}}, "type": "object"} |
e36bf0cd-99dc-477c-a426-16a69dc0f212/b315f644-59c2-4ca6-8a88-ff870109f7c4/0/0 | Big Five Personality Insights | Big Five Personality Insights | 9.1 | /api/big5 | Big Five Personality Insights | 400 | Example_1 | {"type": "", "title": "", "status": 0, "detail": "", "instance": ""} | {"type": "object", "properties": {"type": {"type": ["string", "null"]}, "title": {"type": ["string", "null"]}, "status": {"type": ["integer", "null"], "format": "int32", "minimum": -2147483648, "maximum": 2147483647}, "detail": {"type": ["string", "null"]}, "instance": {"type": ["string", "null"]}}, "additionalProperties": {}} |
e36bf0cd-99dc-477c-a426-16a69dc0f212/b315f644-59c2-4ca6-8a88-ff870109f7c4/2/0 | Big Five Personality Insights | Big Five Personality Insights | 9.1 | /api/big5 | Big Five Personality Insights | 200 | Response | [{"id": "1", "extraversion": 0.6490966342293917, "active": 0.7451781836760761, "assertive": 0.6428862768363677, "cheerful": 0.8481608022363225, "openness": 0.628237451547875, "adventurous": 0.8632080683091589, "artistic": 0.8326649589258899, "emotionally_aware": 0.5462019327718057, "imaginative": 0.7545926818250264, "intellectual": 0.5928455284552846, "conscientiousness": 0.7178803389393091, "cautious": 0.4696863597832897, "disciplined": 0.6535141356736925, "dutiful": 0.8072430559436652, "neuroticism": 0.33715458844455587, "melancholy": 0.12179185668418577, "self_conscious": 0.27770827200471004, "authority_challenging": 0.39571723889987415, "achievement_striving": 0.5798643714136672, "orderliness": 0.8134823731728288, "self_efficacy": 0.8836642504464756, "stress_prone": 0.3458423049318159, "agreeableness": 0.8102504284459913, "cooperative": 0.8848545328932219, "trusting": 0.8220664185348683, "excitement_seeking": 0.6380927134762583, "outgoing": 0.8983468225173609, "gregariousness": 0.8556713933492696, "altruism": 0.9006002929497329, "modesty": 0.765871196583259, "uncompromising": 0.7010716759708243, "sympathy": 0.8554335648666815, "fiery": 0.3160935163789588, "prone_to_worry": 0.180252173833536, "immoderation": 0.34875905447444305}] | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "extraversion": {"type": "number"}, "active": {"type": "number"}, "assertive": {"type": "number"}, "cheerful": {"type": "number"}, "openness": {"type": "number"}, "adventurous": {"type": "number"}, "artistic": {"type": "number"}, "emotionally_aware": {"type": "number"}, "imaginative": {"type": "number"}, "intellectual": {"type": "number"}, "conscientiousness": {"type": "number"}, "cautious": {"type": "number"}, "disciplined": {"type": "number"}, "dutiful": {"type": "number"}, "neuroticism": {"type": "number"}, "melancholy": {"type": "number"}, "self_conscious": {"type": "number"}, "authority_challenging": {"type": "number"}, "achievement_striving": {"type": "number"}, "orderliness": {"type": "number"}, "self_efficacy": {"type": "number"}, "stress_prone": {"type": "number"}, "agreeableness": {"type": "number"}, "cooperative": {"type": "number"}, "trusting": {"type": "number"}, "excitement_seeking": {"type": "number"}, "outgoing": {"type": "number"}, "gregariousness": {"type": "number"}, "altruism": {"type": "number"}, "modesty": {"type": "number"}, "uncompromising": {"type": "number"}, "sympathy": {"type": "number"}, "fiery": {"type": "number"}, "prone_to_worry": {"type": "number"}, "immoderation": {"type": "number"}}}} |
85ccdd78-93b4-4454-a980-d806c959284a/f7af3b0e-1ce5-4ccd-8400-d81542554d1a/0/0 | Senti Analysis | Analyse the text sentiments | null | analyse | Get sentiment analysis for your text and tweets. | 200 | New Example | {"result": {"polarity": 0.31, "type": "positive"}, "sentences": [{"sentence": "My day is going good.", "sentiment": {"polarity": 0.7, "type": "positive"}}, {"sentence": "I might loose some money though.", "sentiment": {"polarity": -0.08, "type": "negative"}}]} | {"type": "object", "properties": {"key1": {"type": "string"}, "key2": {"type": "string"}}} |
e6eb1afa-7777-4383-ac50-190f8117e741/ccba8b95-0d5e-4daa-85a4-7bba210a3016/0/0 | Feedback Analysis API | Get the clustered analytical data from your users feedback using advanced NLP and text analysis. Get names of people, numbers, emoticons, emojis, places and organizations from your feedback data. Convenient APIs to help you analyze your users' feedback. | null | Feedback People | Extracts people names from feedback or text | 200 | Response | {"status": 200, "people": ["Sally", "Jack"]} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"status": {"type": "integer"}, "people": {"type": "array", "items": {"type": "string"}}}, "required": ["people", "status"]} |
e6eb1afa-7777-4383-ac50-190f8117e741/ddf93d1e-3199-48ff-9c02-725ebdfe6c5b/0/0 | Feedback Analysis API | Get the clustered analytical data from your users feedback using advanced NLP and text analysis. Get names of people, numbers, emoticons, emojis, places and organizations from your feedback data. Convenient APIs to help you analyze your users' feedback. | null | Feedback Places | Extracts places from feedback or text | 200 | Response | {"status": 200, "places": ["Italy Europe"]} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"status": {"type": "integer"}, "places": {"type": "array", "items": {"type": "string"}}}, "required": ["places", "status"]} |
e6eb1afa-7777-4383-ac50-190f8117e741/4b9689b6-f196-42ba-9f6f-b0b648bf141b/0/0 | Feedback Analysis API | Get the clustered analytical data from your users feedback using advanced NLP and text analysis. Get names of people, numbers, emoticons, emojis, places and organizations from your feedback data. Convenient APIs to help you analyze your users' feedback. | null | Feedback Organizations | Extract organization names from feedback or text | 200 | Response | {"status": 200, "organizations": ["Microsoft"]} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"status": {"type": "integer"}, "organizations": {"type": "array", "items": {"type": "string"}}}, "required": ["organizations", "status"]} |
e6eb1afa-7777-4383-ac50-190f8117e741/1a4ae277-80e6-46db-a3cd-fab5d45cdc79/0/0 | Feedback Analysis API | Get the clustered analytical data from your users feedback using advanced NLP and text analysis. Get names of people, numbers, emoticons, emojis, places and organizations from your feedback data. Convenient APIs to help you analyze your users' feedback. | null | Feedback Emoticons | Extract emoticons from feedback or text | 200 | Response | {"status": 200, "emoticons": [":)"]} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"status": {"type": "integer"}, "emoticons": {"type": "array", "items": {"type": "string"}}}, "required": ["emoticons", "status"]} |
e6eb1afa-7777-4383-ac50-190f8117e741/932a0e3a-705e-448f-82fd-f759be774abd/0/0 | Feedback Analysis API | Get the clustered analytical data from your users feedback using advanced NLP and text analysis. Get names of people, numbers, emoticons, emojis, places and organizations from your feedback data. Convenient APIs to help you analyze your users' feedback. | null | Feedback Clusters | Using advanced NLP to gain insights into user feedback using clustering. There are feedback highlights that represent the highlight of the text so you don't have to look for the best parts. There subject matters to help classify, sentiment to get the mood and the postive/negative word counts.
This will help breakdown all the feedback and allow you to gain a better understanding of your customers' feedback. | 200 | Response | {"status": 200, "output": [{"subject": "wings", "subject_highlights": ["Hands down the best chicken wings I have ever eaten.", "My partner and I were visiting some friends in the area and these heavenly wings (and a couple of sides of rice) were the only thing requested.", "The wings themselves had great flavor and AMAZING crunch.", "But really, I think the crispiness of the wings is what makes the wings so good (and addicting)."], "feedback": ["Hands down the best chicken wings I have ever eaten. My partner and I were visiting some friends in the area and these heavenly wings (and a couple of sides of rice) were the only thing requested. The wings themselves had great flavor and AMAZING crunch. But really, I think the crispiness of the wings is what makes the wings so good (and addicting). The sauce was a balanced mix of sweet and spicy (very mild, if I had to rate it), which was also great over rice.", "Chicken was great except for the sauce. It lacked spice and wasn't very tasty. The wings were also good and I really like the texture of the grilling. Ymmmm... very tasty. You should put your restaurant on UberEats so that more people can enjoy your great food. Will be sending a review on Google soon."], "sentiment": {"score": 23, "comparative": 0.26136363636363635, "calculation": [{"great": 3}, {"sweet": 2}, {"balanced": 1}, {"good": 3}, {"amazing": 4}, {"great": 3}, {"heavenly": 4}, {"best": 3}], "words": ["great", "sweet", "balanced", "good", "amazing", "great", "heavenly", "best"], "positive": ["great", "sweet", "balanced", "good", "amazing", "great", "heavenly", "best"], "negative": []}}, {"subject": "great", "subject_highlights": ["The wings themselves had great flavor and AMAZING crunch.", "The sauce was a balanced mix of sweet and spicy (very mild, if I had to rate it), which was also great over rice."], "feedback": ["Hands down the best chicken wings I have ever eaten. My partner and I were visiting some friends in the area and these heavenly wings (and a couple of sides of rice) were the only thing requested. The wings themselves had great flavor and AMAZING crunch. But really, I think the crispiness of the wings is what makes the wings so good (and addicting). The sauce was a balanced mix of sweet and spicy (very mild, if I had to rate it), which was also great over rice.", "Chicken was great except for the sauce. It lacked spice and wasn't very tasty. The wings were also good and I really like the texture of the grilling. Ymmmm... very tasty. You should put your restaurant on UberEats so that more people can enjoy your great food. Will be sending a review on Google soon.", "I came from Italy as per a job travel and our team needed to decide which restaurtant to go to for lunch. Yours was suggested and boy did we love it! The creamy pasta was fabulous as were the meat balls. If I could suggest one thing, please keep the feta cheese on the side for the pizza because some of us liked it without the extra cheese. The atmosphere was great and the music was good too. When are you opening up a franchise in Italy? Put me on your email list please."], "sentiment": {"score": 23, "comparative": 0.26136363636363635, "calculation": [{"great": 3}, {"sweet": 2}, {"balanced": 1}, {"good": 3}, {"amazing": 4}, {"great": 3}, {"heavenly": 4}, {"best": 3}], "words": ["great", "sweet", "balanced", "good", "amazing", "great", "heavenly", "best"], "positive": ["great", "sweet", "balanced", "good", "amazing", "great", "heavenly", "best"], "negative": []}}, {"subject": "chicken", "subject_highlights": ["Hands down the best chicken wings I have ever eaten."], "feedback": ["Hands down the best chicken wings I have ever eaten. My partner and I were visiting some friends in the area and these heavenly wings (and a couple of sides of rice) were the only thing requested. The wings themselves had great flavor and AMAZING crunch. But really, I think the crispiness of the wings is what makes the wings so good (and addicting). The sauce was a balanced mix of sweet and spicy (very mild, if I had to rate it), which was also great over rice.", "Chicken was great except for the sauce. It lacked spice and wasn't very tasty. The wings were also good and I really like the texture of the grilling. Ymmmm... very tasty. You should put your restaurant on UberEats so that more people can enjoy your great food. Will be sending a review on Google soon."], "sentiment": {"score": 23, "comparative": 0.26136363636363635, "calculation": [{"great": 3}, {"sweet": 2}, {"balanced": 1}, {"good": 3}, {"amazing": 4}, {"great": 3}, {"heavenly": 4}, {"best": 3}], "words": ["great", "sweet", "balanced", "good", "amazing", "great", "heavenly", "best"], "positive": ["great", "sweet", "balanced", "good", "amazing", "great", "heavenly", "best"], "negative": []}}, {"subject": "rice", "subject_highlights": ["My partner and I were visiting some friends in the area and these heavenly wings (and a couple of sides of rice) were the only thing requested.", "The sauce was a balanced mix of sweet and spicy (very mild, if I had to rate it), which was also great over rice."], "feedback": ["Hands down the best chicken wings I have ever eaten. My partner and I were visiting some friends in the area and these heavenly wings (and a couple of sides of rice) were the only thing requested. The wings themselves had great flavor and AMAZING crunch. But really, I think the crispiness of the wings is what makes the wings so good (and addicting). The sauce was a balanced mix of sweet and spicy (very mild, if I had to rate it), which was also great over rice."], "sentiment": {"score": 23, "comparative": 0.26136363636363635, "calculation": [{"great": 3}, {"sweet": 2}, {"balanced": 1}, {"good": 3}, {"amazing": 4}, {"great": 3}, {"heavenly": 4}, {"best": 3}], "words": ["great", "sweet", "balanced", "good", "amazing", "great", "heavenly", "best"], "positive": ["great", "sweet", "balanced", "good", "amazing", "great", "heavenly", "best"], "negative": []}}, {"subject": "tasty", "subject_highlights": ["It lacked spice and wasn't very tasty.", "Ymmmm... very tasty."], "feedback": ["Chicken was great except for the sauce. It lacked spice and wasn't very tasty. The wings were also good and I really like the texture of the grilling. Ymmmm... very tasty. You should put your restaurant on UberEats so that more people can enjoy your great food. Will be sending a review on Google soon."], "sentiment": {"score": 13, "comparative": 0.23636363636363636, "calculation": [{"great": 3}, {"enjoy": 2}, {"like": 2}, {"good": 3}, {"great": 3}], "words": ["great", "enjoy", "like", "good", "great"], "positive": ["great", "enjoy", "like", "good", "great"], "negative": []}}, {"subject": "hands", "subject_highlights": ["Hands down the best chicken wings I have ever eaten."], "feedback": ["Hands down the best chicken wings I have ever eaten. My partner and I were visiting some friends in the area and these heavenly wings (and a couple of sides of rice) were the only thing requested. The wings themselves had great flavor and AMAZING crunch. But really, I think the crispiness of the wings is what makes the wings so good (and addicting). The sauce was a balanced mix of sweet and spicy (very mild, if I had to rate it), which was also great over rice."], "sentiment": {"score": 23, "comparative": 0.26136363636363635, "calculation": [{"great": 3}, {"sweet": 2}, {"balanced": 1}, {"good": 3}, {"amazing": 4}, {"great": 3}, {"heavenly": 4}, {"best": 3}], "words": ["great", "sweet", "balanced", "good", "amazing", "great", "heavenly", "best"], "positive": ["great", "sweet", "balanced", "good", "amazing", "great", "heavenly", "best"], "negative": []}}, {"subject": "sauce", "subject_highlights": ["The sauce was a balanced mix of sweet and spicy (very mild, if I had to rate it), which was also great over rice."], "feedback": ["Hands down the best chicken wings I have ever eaten. My partner and I were visiting some friends in the area and these heavenly wings (and a couple of sides of rice) were the only thing requested. The wings themselves had great flavor and AMAZING crunch. But really, I think the crispiness of the wings is what makes the wings so good (and addicting). The sauce was a balanced mix of sweet and spicy (very mild, if I had to rate it), which was also great over rice.", "Chicken was great except for the sauce. It lacked spice and wasn't very tasty. The wings were also good and I really like the texture of the grilling. Ymmmm... very tasty. You should put your restaurant on UberEats so that more people can enjoy your great food. Will be sending a review on Google soon."], "sentiment": {"score": 23, "comparative": 0.26136363636363635, "calculation": [{"great": 3}, {"sweet": 2}, {"balanced": 1}, {"good": 3}, {"amazing": 4}, {"great": 3}, {"heavenly": 4}, {"best": 3}], "words": ["great", "sweet", "balanced", "good", "amazing", "great", "heavenly", "best"], "positive": ["great", "sweet", "balanced", "good", "amazing", "great", "heavenly", "best"], "negative": []}}, {"subject": "good", "subject_highlights": ["But really, I think the crispiness of the wings is what makes the wings so good (and addicting)."], "feedback": ["Hands down the best chicken wings I have ever eaten. My partner and I were visiting some friends in the area and these heavenly wings (and a couple of sides of rice) were the only thing requested. The wings themselves had great flavor and AMAZING crunch. But really, I think the crispiness of the wings is what makes the wings so good (and addicting). The sauce was a balanced mix of sweet and spicy (very mild, if I had to rate it), which was also great over rice.", "Chicken was great except for the sauce. It lacked spice and wasn't very tasty. The wings were also good and I really like the texture of the grilling. Ymmmm... very tasty. You should put your restaurant on UberEats so that more people can enjoy your great food. Will be sending a review on Google soon.", "I came from Italy as per a job travel and our team needed to decide which restaurtant to go to for lunch. Yours was suggested and boy did we love it! The creamy pasta was fabulous as were the meat balls. If I could suggest one thing, please keep the feta cheese on the side for the pizza because some of us liked it without the extra cheese. The atmosphere was great and the music was good too. When are you opening up a franchise in Italy? Put me on your email list please."], "sentiment": {"score": 23, "comparative": 0.26136363636363635, "calculation": [{"great": 3}, {"sweet": 2}, {"balanced": 1}, {"good": 3}, {"amazing": 4}, {"great": 3}, {"heavenly": 4}, {"best": 3}], "words": ["great", "sweet", "balanced", "good", "amazing", "great", "heavenly", "best"], "positive": ["great", "sweet", "balanced", "good", "amazing", "great", "heavenly", "best"], "negative": []}}, {"subject": "thing", "subject_highlights": ["My partner and I were visiting some friends in the area and these heavenly wings (and a couple of sides of rice) were the only thing requested."], "feedback": ["Hands down the best chicken wings I have ever eaten. My partner and I were visiting some friends in the area and these heavenly wings (and a couple of sides of rice) were the only thing requested. The wings themselves had great flavor and AMAZING crunch. But really, I think the crispiness of the wings is what makes the wings so good (and addicting). The sauce was a balanced mix of sweet and spicy (very mild, if I had to rate it), which was also great over rice.", "I came from Italy as per a job travel and our team needed to decide which restaurtant to go to for lunch. Yours was suggested and boy did we love it! The creamy pasta was fabulous as were the meat balls. If I could suggest one thing, please keep the feta cheese on the side for the pizza because some of us liked it without the extra cheese. The atmosphere was great and the music was good too. When are you opening up a franchise in Italy? Put me on your email list please."], "sentiment": {"score": 23, "comparative": 0.26136363636363635, "calculation": [{"great": 3}, {"sweet": 2}, {"balanced": 1}, {"good": 3}, {"amazing": 4}, {"great": 3}, {"heavenly": 4}, {"best": 3}], "words": ["great", "sweet", "balanced", "good", "amazing", "great", "heavenly", "best"], "positive": ["great", "sweet", "balanced", "good", "amazing", "great", "heavenly", "best"], "negative": []}}, {"subject": "put", "subject_highlights": ["You should put your restaurant on UberEats so that more people can enjoy your great food."], "feedback": ["Chicken was great except for the sauce. It lacked spice and wasn't very tasty. The wings were also good and I really like the texture of the grilling. Ymmmm... very tasty. You should put your restaurant on UberEats so that more people can enjoy your great food. Will be sending a review on Google soon.", "I came from Italy as per a job travel and our team needed to decide which restaurtant to go to for lunch. Yours was suggested and boy did we love it! The creamy pasta was fabulous as were the meat balls. If I could suggest one thing, please keep the feta cheese on the side for the pizza because some of us liked it without the extra cheese. The atmosphere was great and the music was good too. When are you opening up a franchise in Italy? Put me on your email list please."], "sentiment": {"score": 13, "comparative": 0.23636363636363636, "calculation": [{"great": 3}, {"enjoy": 2}, {"like": 2}, {"good": 3}, {"great": 3}], "words": ["great", "enjoy", "like", "good", "great"], "positive": ["great", "enjoy", "like", "good", "great"], "negative": []}}, {"subject": "italy", "subject_highlights": ["I came from Italy as per a job travel and our team needed to decide which restaurtant to go to for lunch.", "When are you opening up a franchise in Italy?"], "feedback": ["I came from Italy as per a job travel and our team needed to decide which restaurtant to go to for lunch. Yours was suggested and boy did we love it! The creamy pasta was fabulous as were the meat balls. If I could suggest one thing, please keep the feta cheese on the side for the pizza because some of us liked it without the extra cheese. The atmosphere was great and the music was good too. When are you opening up a franchise in Italy? Put me on your email list please."], "sentiment": {"score": 17, "comparative": 0.18085106382978725, "calculation": [{"please": 1}, {"good": 3}, {"great": 3}, {"liked": 2}, {"please": 1}, {"fabulous": 4}, {"love": 3}], "words": ["please", "good", "great", "liked", "please", "fabulous", "love"], "positive": ["please", "good", "great", "liked", "please", "fabulous", "love"], "negative": []}}, {"subject": "partner", "subject_highlights": ["My partner and I were visiting some friends in the area and these heavenly wings (and a couple of sides of rice) were the only thing requested."], "feedback": ["Hands down the best chicken wings I have ever eaten. My partner and I were visiting some friends in the area and these heavenly wings (and a couple of sides of rice) were the only thing requested. The wings themselves had great flavor and AMAZING crunch. But really, I think the crispiness of the wings is what makes the wings so good (and addicting). The sauce was a balanced mix of sweet and spicy (very mild, if I had to rate it), which was also great over rice."], "sentiment": {"score": 23, "comparative": 0.26136363636363635, "calculation": [{"great": 3}, {"sweet": 2}, {"balanced": 1}, {"good": 3}, {"amazing": 4}, {"great": 3}, {"heavenly": 4}, {"best": 3}], "words": ["great", "sweet", "balanced", "good", "amazing", "great", "heavenly", "best"], "positive": ["great", "sweet", "balanced", "good", "amazing", "great", "heavenly", "best"], "negative": []}}, {"subject": "friends", "subject_highlights": ["My partner and I were visiting some friends in the area and these heavenly wings (and a couple of sides of rice) were the only thing requested."], "feedback": ["Hands down the best chicken wings I have ever eaten. My partner and I were visiting some friends in the area and these heavenly wings (and a couple of sides of rice) were the only thing requested. The wings themselves had great flavor and AMAZING crunch. But really, I think the crispiness of the wings is what makes the wings so good (and addicting). The sauce was a balanced mix of sweet and spicy (very mild, if I had to rate it), which was also great over rice."], "sentiment": {"score": 23, "comparative": 0.26136363636363635, "calculation": [{"great": 3}, {"sweet": 2}, {"balanced": 1}, {"good": 3}, {"amazing": 4}, {"great": 3}, {"heavenly": 4}, {"best": 3}], "words": ["great", "sweet", "balanced", "good", "amazing", "great", "heavenly", "best"], "positive": ["great", "sweet", "balanced", "good", "amazing", "great", "heavenly", "best"], "negative": []}}, {"subject": "sides", "subject_highlights": ["My partner and I were visiting some friends in the area and these heavenly wings (and a couple of sides of rice) were the only thing requested."], "feedback": ["Hands down the best chicken wings I have ever eaten. My partner and I were visiting some friends in the area and these heavenly wings (and a couple of sides of rice) were the only thing requested. The wings themselves had great flavor and AMAZING crunch. But really, I think the crispiness of the wings is what makes the wings so good (and addicting). The sauce was a balanced mix of sweet and spicy (very mild, if I had to rate it), which was also great over rice."], "sentiment": {"score": 23, "comparative": 0.26136363636363635, "calculation": [{"great": 3}, {"sweet": 2}, {"balanced": 1}, {"good": 3}, {"amazing": 4}, {"great": 3}, {"heavenly": 4}, {"best": 3}], "words": ["great", "sweet", "balanced", "good", "amazing", "great", "heavenly", "best"], "positive": ["great", "sweet", "balanced", "good", "amazing", "great", "heavenly", "best"], "negative": []}}, {"subject": "cheese", "subject_highlights": ["If I could suggest one thing, please keep the feta cheese on the side for the pizza because some of us liked it without the extra cheese."], "feedback": ["I came from Italy as per a job travel and our team needed to decide which restaurtant to go to for lunch. Yours was suggested and boy did we love it! The creamy pasta was fabulous as were the meat balls. If I could suggest one thing, please keep the feta cheese on the side for the pizza because some of us liked it without the extra cheese. The atmosphere was great and the music was good too. When are you opening up a franchise in Italy? Put me on your email list please."], "sentiment": {"score": 17, "comparative": 0.18085106382978725, "calculation": [{"please": 1}, {"good": 3}, {"great": 3}, {"liked": 2}, {"please": 1}, {"fabulous": 4}, {"love": 3}], "words": ["please", "good", "great", "liked", "please", "fabulous", "love"], "positive": ["please", "good", "great", "liked", "please", "fabulous", "love"], "negative": []}}, {"similarity": 232.88888888888889}]} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"status": {"type": "integer"}, "output": {"type": "array", "items": {"type": "object", "properties": {"subject": {"type": "string"}, "subject_highlights": {"type": "array", "items": {"type": "string"}}, "feedback": {"type": "array", "items": {"type": "string"}}, "sentiment": {"type": "object", "properties": {"score": {"type": "integer"}, "comparative": {"type": "number"}, "calculation": {"type": "array", "items": {"type": "object", "properties": {"great": {"type": "integer"}, "sweet": {"type": "integer"}, "balanced": {"type": "integer"}, "good": {"type": "integer"}, "amazing": {"type": "integer"}, "heavenly": {"type": "integer"}, "best": {"type": "integer"}, "enjoy": {"type": "integer"}, "like": {"type": "integer"}, "please": {"type": "integer"}, "liked": {"type": "integer"}, "fabulous": {"type": "integer"}, "love": {"type": "integer"}}}}, "words": {"type": "array", "items": {"type": "string"}}, "positive": {"type": "array", "items": {"type": "string"}}, "negative": {"type": "array"}}, "required": ["calculation", "comparative", "negative", "positive", "score", "words"]}, "similarity": {"type": "number"}}}}}, "required": ["output", "status"]} |
e6eb1afa-7777-4383-ac50-190f8117e741/f6cfea7a-045f-45dc-a54a-54657fc4a304/0/0 | Feedback Analysis API | Get the clustered analytical data from your users feedback using advanced NLP and text analysis. Get names of people, numbers, emoticons, emojis, places and organizations from your feedback data. Convenient APIs to help you analyze your users' feedback. | null | Feedback Numbers | Extract written numbers from feedback and text, i.e. "Ten" or "Eighty one" | 200 | Response | {"status": 200, "numbers": ["ten"]} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"status": {"type": "integer"}, "numbers": {"type": "array", "items": {"type": "string"}}}, "required": ["numbers", "status"]} |
e6eb1afa-7777-4383-ac50-190f8117e741/67721b98-f7b5-41ca-98f8-0dfe0a15ad82/0/0 | Feedback Analysis API | Get the clustered analytical data from your users feedback using advanced NLP and text analysis. Get names of people, numbers, emoticons, emojis, places and organizations from your feedback data. Convenient APIs to help you analyze your users' feedback. | null | Feedback Emojis | Extract emojis from feedback or text | 200 | Response | {"status": 200, "emojis": ["\ud83d\ude03"]} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"status": {"type": "integer"}, "emojis": {"type": "array", "items": {"type": "string"}}}, "required": ["emojis", "status"]} |
e97e3d94-370e-425a-8489-638361c3af4d/9b62f0c9-0a73-4eaf-b10f-f888e581a625/0/0 | Walnut Word Completion | Complete any masked word in a sentence using AI. | 7.3 | wrt_transformer | Returns the hidden word in the sentence. | 200 | Response | {"result": "cats"} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"result": {"type": "string"}}, "required": ["result"]} |
9034ce72-d8d2-47f7-b00a-f29c2f3a273a/7f8e3537-6e9f-404c-92a8-c10b2ae601ba/1/0 | Basla Emotion Analysis | This API will enable you to analyze emotional intensities based on Ekman Emotions. It is powered with BASLA, NLP Engine by dert®. | 0 | Single Text Input Analysis | Insert your text to analyze Ekman emotion intensities. | 422 | Example_1 | {"detail": [{"loc": [], "msg": "", "type": ""}]} | {"title": "HTTPValidationError", "type": "object", "properties": {"detail": {"title": "Detail", "type": "array", "items": {"title": "ValidationError", "required": ["loc", "msg", "type"], "type": "object", "properties": {"loc": {"title": "Location", "type": "array", "items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}}, "msg": {"title": "Message", "type": "string"}, "type": {"title": "Error Type", "type": "string"}}}}}} |
a33eba74-3909-49ae-b936-16deb8a15a06/1a17c98e-34fa-4d7f-bc30-41dbb24706d0/0/0 | URL Expander | URL details, load-time, and title of target doc
Check for dead URLs | 8.6 | URL_Expander | Provide short_url through Query Param.
If the target URL is no more active (or removed/moved) it will return
{ target_url_alive : False }
URL's response_time is in milliseconds | 200 | Response | {"input_url": "ihe.art/OauJBXD", "response_time": 256, "target_url": "https://1035kissfm.iheart.com/featured/the-fred-show/content/2019-04-01-elon-musk-just-dropped-a-surprise-rap-song-listen/", "target_url_alive": true, "title": "Elon Musk Just Dropped A Surprise Rap Song [LISTEN] | 103.5 KISS FM | The Fred Show"} | {"properties": {"target_url": {"type": "string"}, "target_url_alive": {"type": "boolean"}}, "type": "object"} |
71906d61-018a-4d29-a485-767edd704acb/c3a493f5-9b85-4aa4-9bc2-71e1dc777e19/0/0 | Rewriter/Paraphraser/Text Changer (Multi-Language) | Our rewriter changes the syntax, structure, word/phrase order, and uses synonyms when relevant. This rewriter works in in all major languages (english, german, spanish, french, arabic, Chinese, and many more). Max character count of 10,000. Questions? See "About" FAQ. | 9.7 | Rewriter Endpoint | RAPID API test endpoint only returns a mock response. We recommend you use postman to test real data. For questions or how to use Postman, please see "About" FAQ. SUCCESS RATE: Success rate is 97%, however many users have sent incorrect requests numerous times, each time with it failing due to the wrong request parameters which makes the error rate appear higher than what it is (3%). | 400 | Rewrite data error | {"error": "reason"} | {"properties": {"error": {"type": "string"}}, "type": "object"} |
71906d61-018a-4d29-a485-767edd704acb/c3a493f5-9b85-4aa4-9bc2-71e1dc777e19/1/0 | Rewriter/Paraphraser/Text Changer (Multi-Language) | Our rewriter changes the syntax, structure, word/phrase order, and uses synonyms when relevant. This rewriter works in in all major languages (english, german, spanish, french, arabic, Chinese, and many more). Max character count of 10,000. Questions? See "About" FAQ. | 9.7 | Rewriter Endpoint | RAPID API test endpoint only returns a mock response. We recommend you use postman to test real data. For questions or how to use Postman, please see "About" FAQ. SUCCESS RATE: Success rate is 97%, however many users have sent incorrect requests numerous times, each time with it failing due to the wrong request parameters which makes the error rate appear higher than what it is (3%). | 500 | Rewriter Failure | {"error": "Error message"} | {"properties": {"error": {"type": "string"}}, "type": "object"} |
71906d61-018a-4d29-a485-767edd704acb/c3a493f5-9b85-4aa4-9bc2-71e1dc777e19/2/0 | Rewriter/Paraphraser/Text Changer (Multi-Language) | Our rewriter changes the syntax, structure, word/phrase order, and uses synonyms when relevant. This rewriter works in in all major languages (english, german, spanish, french, arabic, Chinese, and many more). Max character count of 10,000. Questions? See "About" FAQ. | 9.7 | Rewriter Endpoint | RAPID API test endpoint only returns a mock response. We recommend you use postman to test real data. For questions or how to use Postman, please see "About" FAQ. SUCCESS RATE: Success rate is 97%, however many users have sent incorrect requests numerous times, each time with it failing due to the wrong request parameters which makes the error rate appear higher than what it is (3%). | 200 | English Example | {"language": "en", "rewrite": "Let's change this text!", "similarity": 0.85} | {"type": "object", "properties": {"language": {"type": "string"}, "rewrite": {"type": "string"}, "similarity": {"type": "number"}}} |
53aa6139e4b051a76d241e65/5a5b8293e4b040d2b59946c0/0/0 | RussianSentimentAnalyzer | RussianSentimentAnalyzer (RSA) is a JSON API to detect object level sentiment volume and direction for texts in Russian. Key advantages: very light-weight API, that delivers the quality of sentiment analysis you need | null | Input text for subjectivity | Check if this text is subjective (contains emotions) or objective (informative, but does not contain emotion colour), optionally for given target object keywords | 200 | Example_1 | {"sentimentTag": "SUBJECTIVE"} | {"type": "object", "properties": {"sentimentTag": {"type": "string"}}} |
53aa6139e4b051a76d241e65/5c321e11e4b0ddd96d1a36b1/0/0 | RussianSentimentAnalyzer | RussianSentimentAnalyzer (RSA) is a JSON API to detect object level sentiment volume and direction for texts in Russian. Key advantages: very light-weight API, that delivers the quality of sentiment analysis you need | null | Array of input texts | Send array of input texts | 200 | Example_1 | [{"sentiment": "NEUTRAL", "strength": 0, "article_id": "1"}, {"sentiment": "NEUTRAL", "strength": 0, "article_id": "2"}] | {"type": "array", "items": {"type": "object", "properties": {"sentiment": {"type": "string"}, "strength": {"type": "integer"}, "article_id": {"type": "string"}}}} |
53aa6139e4b051a76d241e65/53aa613ae4b051a76d241e6c/0/0 | RussianSentimentAnalyzer | RussianSentimentAnalyzer (RSA) is a JSON API to detect object level sentiment volume and direction for texts in Russian. Key advantages: very light-weight API, that delivers the quality of sentiment analysis you need | null | Input text | Supply text and optionally target objects to annotate sentiment for. Also include client_text_id, if you plan to later submit feedback on it. | 200 | Example_1 | {"sentiment": "POSITIVE"} | {"type": "object", "properties": {"sentiment": {"type": "string"}}} |
53aa6139e4b051a76d241e65/5a5b83f9e4b0297d04c86251/0/0 | RussianSentimentAnalyzer | RussianSentimentAnalyzer (RSA) is a JSON API to detect object level sentiment volume and direction for texts in Russian. Key advantages: very light-weight API, that delivers the quality of sentiment analysis you need | null | Input text with client_text_id | This text is registered for future feedback on the annotation results | 200 | Example_1 | {"sentiment": "POSITIVE", "synonyms": "\u0412\u0422\u0411", "strength": 1} | {"type": "object", "properties": {"sentiment": {"type": "string"}, "synonyms": {"type": "string"}, "strength": {"type": "integer"}}} |
53aa6139e4b051a76d241e65/5a5b7fe0e4b0297d04c86231/0/0 | RussianSentimentAnalyzer | RussianSentimentAnalyzer (RSA) is a JSON API to detect object level sentiment volume and direction for texts in Russian. Key advantages: very light-weight API, that delivers the quality of sentiment analysis you need | null | Client feedback | Use this endpoint to provide feedback on sentiment accuracy: submit your internal text id, auto label and human label. | 200 | Example_1 | {"message": "Feedback has been accepted"} | {"type": "object", "properties": {"message": {"type": "string"}}} |
1c039e4b-837f-4011-a5e8-a61ae94f5fb0/f977206d-22c4-418b-be65-36439837ed8e/0/0 | Profanity Filter | Filter inputted text content for profanity, offensive and obscenity word base on an internal profanity list. It can also recognize character alternates or special characters often used in place of standard alphabetic characters. | 8.2 | Read Text | Allows you to detect and filter out profanity / offensive form a given text. It is only available for English words. You can also censor out words in text content. | 200 | Response | {"total_words_checked": 8, "checked_word": "This example text contains no profanity / offensive word.", "contains_offensive_word": false, "censor_replacement_string": "*", "filtering_range": "low"} | {"type": "object", "properties": {"total_words_checked": {"type": "integer"}, "checked_word": {"type": "string"}, "contains_offensive_word": {"type": "boolean"}, "censor_replacement_string": {"type": "string"}, "filtering_range": {"type": "string"}, "profanities": {"type": "array", "items": {"type": "string"}}, "total_using_low": {"type": "integer"}, "total_using_mid": {"type": "integer"}, "total_using_high": {"type": "integer"}, "word_filtered": {"type": "string"}, "possible_profanities_not_in_low": {"type": "array", "items": {"type": "string"}}, "possible_profanities_not_in_mid": {"type": "array", "items": {"type": "string"}}, "total_not_in_low": {"type": "integer"}, "total_not_in_mid": {"type": "integer"}, "possible_offensive": {"type": "array", "items": {"type": "string"}}}} |
676781fc-8f1b-482a-b676-554c00879b8d/eb703a8d-2a4e-4439-94c1-26d5285e33ca/0/0 | Gerwin AI Beta | Tools for copywriting. Writing (generation) of texts, text rewriting, writing content for social networks. Creating advertisements and real estate listings and more | null | Характеристики товара | Данный метод задействует навык «Характеристики товара» | 200 | null | {"id": "", "status": "wait", "status_text": "", "code": "", "created_at": "", "start_at": "", "finished_at": "", "text": "", "callback": ""} | {"required": ["code"], "type": "object", "properties": {"id": {"title": "Id", "type": "string", "format": "uuid"}, "status": {"title": "\u0421\u0442\u0430\u0442\u0443\u0441", "type": "string", "enum": ["wait", "process", "success", "error"]}, "status_text": {"title": "Status text", "type": "string"}, "code": {"title": "\u041a\u043e\u0434 \u0437\u0430\u0434\u0430\u0447\u0438", "type": "string", "maxLength": 255, "minLength": 1}, "created_at": {"title": "C\u043e\u0437\u0434\u0430\u043d\u0438\u0435", "type": "string", "format": "date-time"}, "start_at": {"title": "\u0412\u0440\u0435\u043c\u044f \u0437\u0430\u043f\u0443\u0441\u043a\u0430", "type": ["string", "null"], "format": "date-time"}, "finished_at": {"title": "\u0412\u0440\u0435\u043c\u044f \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u044f", "type": ["string", "null"], "format": "date-time"}, "text": {"title": "\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442", "type": "string"}, "callback": {"title": "CallBack URL", "type": "string", "maxLength": 200}}} |
676781fc-8f1b-482a-b676-554c00879b8d/eb703a8d-2a4e-4439-94c1-26d5285e33ca/1/0 | Gerwin AI Beta | Tools for copywriting. Writing (generation) of texts, text rewriting, writing content for social networks. Creating advertisements and real estate listings and more | null | Характеристики товара | Данный метод задействует навык «Характеристики товара» | 400 | null | {"code": "", "message": ""} | {"required": ["code", "message"], "type": "object", "properties": {"code": {"title": "Code", "type": "string", "minLength": 1}, "message": {"title": "Message", "type": "string", "minLength": 1}}} |
676781fc-8f1b-482a-b676-554c00879b8d/b85a9602-3f0c-481d-af08-62647d387971/0/0 | Gerwin AI Beta | Tools for copywriting. Writing (generation) of texts, text rewriting, writing content for social networks. Creating advertisements and real estate listings and more | null | Сокращение текста | Данный метод задействует навык «Сокращение текста» | 200 | null | {"id": "", "status": "wait", "status_text": "", "code": "", "created_at": "", "start_at": "", "finished_at": "", "text": "", "callback": ""} | {"required": ["code"], "type": "object", "properties": {"id": {"title": "Id", "type": "string", "format": "uuid"}, "status": {"title": "\u0421\u0442\u0430\u0442\u0443\u0441", "type": "string", "enum": ["wait", "process", "success", "error"]}, "status_text": {"title": "Status text", "type": "string"}, "code": {"title": "\u041a\u043e\u0434 \u0437\u0430\u0434\u0430\u0447\u0438", "type": "string", "maxLength": 255, "minLength": 1}, "created_at": {"title": "C\u043e\u0437\u0434\u0430\u043d\u0438\u0435", "type": "string", "format": "date-time"}, "start_at": {"title": "\u0412\u0440\u0435\u043c\u044f \u0437\u0430\u043f\u0443\u0441\u043a\u0430", "type": ["string", "null"], "format": "date-time"}, "finished_at": {"title": "\u0412\u0440\u0435\u043c\u044f \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u044f", "type": ["string", "null"], "format": "date-time"}, "text": {"title": "\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442", "type": "string"}, "callback": {"title": "CallBack URL", "type": "string", "maxLength": 200}}} |
676781fc-8f1b-482a-b676-554c00879b8d/b85a9602-3f0c-481d-af08-62647d387971/1/0 | Gerwin AI Beta | Tools for copywriting. Writing (generation) of texts, text rewriting, writing content for social networks. Creating advertisements and real estate listings and more | null | Сокращение текста | Данный метод задействует навык «Сокращение текста» | 400 | null | {"code": "", "message": ""} | {"required": ["code", "message"], "type": "object", "properties": {"code": {"title": "Code", "type": "string", "minLength": 1}, "message": {"title": "Message", "type": "string", "minLength": 1}}} |
676781fc-8f1b-482a-b676-554c00879b8d/f6e04e60-b62d-42c1-ba33-700f252315dd/0/0 | Gerwin AI Beta | Tools for copywriting. Writing (generation) of texts, text rewriting, writing content for social networks. Creating advertisements and real estate listings and more | null | Комментарий для статьи | Данный метод задействует навык «Комментарий для статьи» | 200 | null | {"id": "", "status": "wait", "status_text": "", "code": "", "created_at": "", "start_at": "", "finished_at": "", "text": "", "callback": ""} | {"required": ["code"], "type": "object", "properties": {"id": {"title": "Id", "type": "string", "format": "uuid"}, "status": {"title": "\u0421\u0442\u0430\u0442\u0443\u0441", "type": "string", "enum": ["wait", "process", "success", "error"]}, "status_text": {"title": "Status text", "type": "string"}, "code": {"title": "\u041a\u043e\u0434 \u0437\u0430\u0434\u0430\u0447\u0438", "type": "string", "maxLength": 255, "minLength": 1}, "created_at": {"title": "C\u043e\u0437\u0434\u0430\u043d\u0438\u0435", "type": "string", "format": "date-time"}, "start_at": {"title": "\u0412\u0440\u0435\u043c\u044f \u0437\u0430\u043f\u0443\u0441\u043a\u0430", "type": ["string", "null"], "format": "date-time"}, "finished_at": {"title": "\u0412\u0440\u0435\u043c\u044f \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u044f", "type": ["string", "null"], "format": "date-time"}, "text": {"title": "\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442", "type": "string"}, "callback": {"title": "CallBack URL", "type": "string", "maxLength": 200}}} |
676781fc-8f1b-482a-b676-554c00879b8d/f6e04e60-b62d-42c1-ba33-700f252315dd/1/0 | Gerwin AI Beta | Tools for copywriting. Writing (generation) of texts, text rewriting, writing content for social networks. Creating advertisements and real estate listings and more | null | Комментарий для статьи | Данный метод задействует навык «Комментарий для статьи» | 400 | null | {"code": "", "message": ""} | {"required": ["code", "message"], "type": "object", "properties": {"code": {"title": "Code", "type": "string", "minLength": 1}, "message": {"title": "Message", "type": "string", "minLength": 1}}} |
676781fc-8f1b-482a-b676-554c00879b8d/78777505-06aa-4743-887c-fa3f2b1aa58f/0/0 | Gerwin AI Beta | Tools for copywriting. Writing (generation) of texts, text rewriting, writing content for social networks. Creating advertisements and real estate listings and more | null | Преимущества товара | Данный метод задействует навык «Преимущества товара» | 200 | null | {"id": "", "status": "wait", "status_text": "", "code": "", "created_at": "", "start_at": "", "finished_at": "", "text": "", "callback": ""} | {"required": ["code"], "type": "object", "properties": {"id": {"title": "Id", "type": "string", "format": "uuid"}, "status": {"title": "\u0421\u0442\u0430\u0442\u0443\u0441", "type": "string", "enum": ["wait", "process", "success", "error"]}, "status_text": {"title": "Status text", "type": "string"}, "code": {"title": "\u041a\u043e\u0434 \u0437\u0430\u0434\u0430\u0447\u0438", "type": "string", "maxLength": 255, "minLength": 1}, "created_at": {"title": "C\u043e\u0437\u0434\u0430\u043d\u0438\u0435", "type": "string", "format": "date-time"}, "start_at": {"title": "\u0412\u0440\u0435\u043c\u044f \u0437\u0430\u043f\u0443\u0441\u043a\u0430", "type": ["string", "null"], "format": "date-time"}, "finished_at": {"title": "\u0412\u0440\u0435\u043c\u044f \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u044f", "type": ["string", "null"], "format": "date-time"}, "text": {"title": "\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442", "type": "string"}, "callback": {"title": "CallBack URL", "type": "string", "maxLength": 200}}} |
676781fc-8f1b-482a-b676-554c00879b8d/78777505-06aa-4743-887c-fa3f2b1aa58f/1/0 | Gerwin AI Beta | Tools for copywriting. Writing (generation) of texts, text rewriting, writing content for social networks. Creating advertisements and real estate listings and more | null | Преимущества товара | Данный метод задействует навык «Преимущества товара» | 400 | null | {"code": "", "message": ""} | {"required": ["code", "message"], "type": "object", "properties": {"code": {"title": "Code", "type": "string", "minLength": 1}, "message": {"title": "Message", "type": "string", "minLength": 1}}} |
676781fc-8f1b-482a-b676-554c00879b8d/a8fe0a48-f36b-4947-84c7-e6f5612f4b4c/0/0 | Gerwin AI Beta | Tools for copywriting. Writing (generation) of texts, text rewriting, writing content for social networks. Creating advertisements and real estate listings and more | null | Интересная история | Данный метод задействует навык «Интересная история» | 200 | null | {"id": "", "status": "wait", "status_text": "", "code": "", "created_at": "", "start_at": "", "finished_at": "", "text": "", "callback": ""} | {"required": ["code"], "type": "object", "properties": {"id": {"title": "Id", "type": "string", "format": "uuid"}, "status": {"title": "\u0421\u0442\u0430\u0442\u0443\u0441", "type": "string", "enum": ["wait", "process", "success", "error"]}, "status_text": {"title": "Status text", "type": "string"}, "code": {"title": "\u041a\u043e\u0434 \u0437\u0430\u0434\u0430\u0447\u0438", "type": "string", "maxLength": 255, "minLength": 1}, "created_at": {"title": "C\u043e\u0437\u0434\u0430\u043d\u0438\u0435", "type": "string", "format": "date-time"}, "start_at": {"title": "\u0412\u0440\u0435\u043c\u044f \u0437\u0430\u043f\u0443\u0441\u043a\u0430", "type": ["string", "null"], "format": "date-time"}, "finished_at": {"title": "\u0412\u0440\u0435\u043c\u044f \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u044f", "type": ["string", "null"], "format": "date-time"}, "text": {"title": "\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442", "type": "string"}, "callback": {"title": "CallBack URL", "type": "string", "maxLength": 200}}} |
676781fc-8f1b-482a-b676-554c00879b8d/a8fe0a48-f36b-4947-84c7-e6f5612f4b4c/1/0 | Gerwin AI Beta | Tools for copywriting. Writing (generation) of texts, text rewriting, writing content for social networks. Creating advertisements and real estate listings and more | null | Интересная история | Данный метод задействует навык «Интересная история» | 400 | null | {"code": "", "message": ""} | {"required": ["code", "message"], "type": "object", "properties": {"code": {"title": "Code", "type": "string", "minLength": 1}, "message": {"title": "Message", "type": "string", "minLength": 1}}} |
676781fc-8f1b-482a-b676-554c00879b8d/ecd6b4d8-88ed-42f6-9083-8848cef72ddd/0/0 | Gerwin AI Beta | Tools for copywriting. Writing (generation) of texts, text rewriting, writing content for social networks. Creating advertisements and real estate listings and more | null | Отзыв о товаре | Данный метод задействует навык «Отзыв о товаре» | 200 | null | {"id": "", "status": "wait", "status_text": "", "code": "", "created_at": "", "start_at": "", "finished_at": "", "text": "", "callback": ""} | {"required": ["code"], "type": "object", "properties": {"id": {"title": "Id", "type": "string", "format": "uuid"}, "status": {"title": "\u0421\u0442\u0430\u0442\u0443\u0441", "type": "string", "enum": ["wait", "process", "success", "error"]}, "status_text": {"title": "Status text", "type": "string"}, "code": {"title": "\u041a\u043e\u0434 \u0437\u0430\u0434\u0430\u0447\u0438", "type": "string", "maxLength": 255, "minLength": 1}, "created_at": {"title": "C\u043e\u0437\u0434\u0430\u043d\u0438\u0435", "type": "string", "format": "date-time"}, "start_at": {"title": "\u0412\u0440\u0435\u043c\u044f \u0437\u0430\u043f\u0443\u0441\u043a\u0430", "type": ["string", "null"], "format": "date-time"}, "finished_at": {"title": "\u0412\u0440\u0435\u043c\u044f \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u044f", "type": ["string", "null"], "format": "date-time"}, "text": {"title": "\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442", "type": "string"}, "callback": {"title": "CallBack URL", "type": "string", "maxLength": 200}}} |
676781fc-8f1b-482a-b676-554c00879b8d/ecd6b4d8-88ed-42f6-9083-8848cef72ddd/1/0 | Gerwin AI Beta | Tools for copywriting. Writing (generation) of texts, text rewriting, writing content for social networks. Creating advertisements and real estate listings and more | null | Отзыв о товаре | Данный метод задействует навык «Отзыв о товаре» | 400 | null | {"code": "", "message": ""} | {"required": ["code", "message"], "type": "object", "properties": {"code": {"title": "Code", "type": "string", "minLength": 1}, "message": {"title": "Message", "type": "string", "minLength": 1}}} |
676781fc-8f1b-482a-b676-554c00879b8d/e8db9ede-51c1-4713-affa-5d0d9f7b1d40/0/0 | Gerwin AI Beta | Tools for copywriting. Writing (generation) of texts, text rewriting, writing content for social networks. Creating advertisements and real estate listings and more | null | Длинная статья | Данный метод задействует навык «Длинная статья» | 400 | null | {"code": "", "message": ""} | {"required": ["code", "message"], "type": "object", "properties": {"code": {"title": "Code", "type": "string", "minLength": 1}, "message": {"title": "Message", "type": "string", "minLength": 1}}} |
676781fc-8f1b-482a-b676-554c00879b8d/e8db9ede-51c1-4713-affa-5d0d9f7b1d40/1/0 | Gerwin AI Beta | Tools for copywriting. Writing (generation) of texts, text rewriting, writing content for social networks. Creating advertisements and real estate listings and more | null | Длинная статья | Данный метод задействует навык «Длинная статья» | 200 | null | {"id": "", "status": "wait", "status_text": "", "code": "", "created_at": "", "start_at": "", "finished_at": "", "text": "", "callback": ""} | {"required": ["code"], "type": "object", "properties": {"id": {"title": "Id", "type": "string", "format": "uuid"}, "status": {"title": "\u0421\u0442\u0430\u0442\u0443\u0441", "type": "string", "enum": ["wait", "process", "success", "error"]}, "status_text": {"title": "Status text", "type": "string"}, "code": {"title": "\u041a\u043e\u0434 \u0437\u0430\u0434\u0430\u0447\u0438", "type": "string", "maxLength": 255, "minLength": 1}, "created_at": {"title": "C\u043e\u0437\u0434\u0430\u043d\u0438\u0435", "type": "string", "format": "date-time"}, "start_at": {"title": "\u0412\u0440\u0435\u043c\u044f \u0437\u0430\u043f\u0443\u0441\u043a\u0430", "type": ["string", "null"], "format": "date-time"}, "finished_at": {"title": "\u0412\u0440\u0435\u043c\u044f \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u044f", "type": ["string", "null"], "format": "date-time"}, "text": {"title": "\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442", "type": "string"}, "callback": {"title": "CallBack URL", "type": "string", "maxLength": 200}}} |
676781fc-8f1b-482a-b676-554c00879b8d/e27cb50b-cf4c-46dc-9dd6-06b5e95ba790/0/0 | Gerwin AI Beta | Tools for copywriting. Writing (generation) of texts, text rewriting, writing content for social networks. Creating advertisements and real estate listings and more | null | Сравнение товаров | Данный метод задействует навык «Сравнение товаров» | 200 | null | {"id": "", "status": "wait", "status_text": "", "code": "", "created_at": "", "start_at": "", "finished_at": "", "text": "", "callback": ""} | {"required": ["code"], "type": "object", "properties": {"id": {"title": "Id", "type": "string", "format": "uuid"}, "status": {"title": "\u0421\u0442\u0430\u0442\u0443\u0441", "type": "string", "enum": ["wait", "process", "success", "error"]}, "status_text": {"title": "Status text", "type": "string"}, "code": {"title": "\u041a\u043e\u0434 \u0437\u0430\u0434\u0430\u0447\u0438", "type": "string", "maxLength": 255, "minLength": 1}, "created_at": {"title": "C\u043e\u0437\u0434\u0430\u043d\u0438\u0435", "type": "string", "format": "date-time"}, "start_at": {"title": "\u0412\u0440\u0435\u043c\u044f \u0437\u0430\u043f\u0443\u0441\u043a\u0430", "type": ["string", "null"], "format": "date-time"}, "finished_at": {"title": "\u0412\u0440\u0435\u043c\u044f \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u044f", "type": ["string", "null"], "format": "date-time"}, "text": {"title": "\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442", "type": "string"}, "callback": {"title": "CallBack URL", "type": "string", "maxLength": 200}}} |
676781fc-8f1b-482a-b676-554c00879b8d/e27cb50b-cf4c-46dc-9dd6-06b5e95ba790/1/0 | Gerwin AI Beta | Tools for copywriting. Writing (generation) of texts, text rewriting, writing content for social networks. Creating advertisements and real estate listings and more | null | Сравнение товаров | Данный метод задействует навык «Сравнение товаров» | 400 | null | {"code": "", "message": ""} | {"required": ["code", "message"], "type": "object", "properties": {"code": {"title": "Code", "type": "string", "minLength": 1}, "message": {"title": "Message", "type": "string", "minLength": 1}}} |
676781fc-8f1b-482a-b676-554c00879b8d/1263c72f-86c2-4b56-996d-0ef3c4775081/0/0 | Gerwin AI Beta | Tools for copywriting. Writing (generation) of texts, text rewriting, writing content for social networks. Creating advertisements and real estate listings and more | null | Задача | Данный метод поможет проверить статус выполнения задачи и ее результат | 400 | null | {"code": "", "message": ""} | {"required": ["code", "message"], "type": "object", "properties": {"code": {"title": "Code", "type": "string", "minLength": 1}, "message": {"title": "Message", "type": "string", "minLength": 1}}} |
676781fc-8f1b-482a-b676-554c00879b8d/1263c72f-86c2-4b56-996d-0ef3c4775081/1/0 | Gerwin AI Beta | Tools for copywriting. Writing (generation) of texts, text rewriting, writing content for social networks. Creating advertisements and real estate listings and more | null | Задача | Данный метод поможет проверить статус выполнения задачи и ее результат | 200 | null | [{"id": "", "status": "wait", "status_text": "", "code": "", "created_at": "", "start_at": "", "finished_at": "", "text": "", "callback": ""}] | {"type": "array", "items": {"required": ["code"], "type": "object", "properties": {"id": {"title": "Id", "type": "string", "format": "uuid"}, "status": {"title": "\u0421\u0442\u0430\u0442\u0443\u0441", "type": "string", "enum": ["wait", "process", "success", "error"]}, "status_text": {"title": "Status text", "type": "string"}, "code": {"title": "\u041a\u043e\u0434 \u0437\u0430\u0434\u0430\u0447\u0438", "type": "string", "maxLength": 255, "minLength": 1}, "created_at": {"title": "C\u043e\u0437\u0434\u0430\u043d\u0438\u0435", "type": "string", "format": "date-time"}, "start_at": {"title": "\u0412\u0440\u0435\u043c\u044f \u0437\u0430\u043f\u0443\u0441\u043a\u0430", "type": ["string", "null"], "format": "date-time"}, "finished_at": {"title": "\u0412\u0440\u0435\u043c\u044f \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u044f", "type": ["string", "null"], "format": "date-time"}, "text": {"title": "\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442", "type": "string"}, "callback": {"title": "CallBack URL", "type": "string", "maxLength": 200}}}} |
676781fc-8f1b-482a-b676-554c00879b8d/d5ebc2ea-012c-4cd7-b39c-db099bd11bb0/0/0 | Gerwin AI Beta | Tools for copywriting. Writing (generation) of texts, text rewriting, writing content for social networks. Creating advertisements and real estate listings and more | null | Короткий пост | Данный метод задействует навык «Короткий пост» | 400 | null | {"code": "", "message": ""} | {"required": ["code", "message"], "type": "object", "properties": {"code": {"title": "Code", "type": "string", "minLength": 1}, "message": {"title": "Message", "type": "string", "minLength": 1}}} |
676781fc-8f1b-482a-b676-554c00879b8d/d5ebc2ea-012c-4cd7-b39c-db099bd11bb0/1/0 | Gerwin AI Beta | Tools for copywriting. Writing (generation) of texts, text rewriting, writing content for social networks. Creating advertisements and real estate listings and more | null | Короткий пост | Данный метод задействует навык «Короткий пост» | 200 | null | {"id": "", "status": "wait", "status_text": "", "code": "", "created_at": "", "start_at": "", "finished_at": "", "text": "", "callback": ""} | {"required": ["code"], "type": "object", "properties": {"id": {"title": "Id", "type": "string", "format": "uuid"}, "status": {"title": "\u0421\u0442\u0430\u0442\u0443\u0441", "type": "string", "enum": ["wait", "process", "success", "error"]}, "status_text": {"title": "Status text", "type": "string"}, "code": {"title": "\u041a\u043e\u0434 \u0437\u0430\u0434\u0430\u0447\u0438", "type": "string", "maxLength": 255, "minLength": 1}, "created_at": {"title": "C\u043e\u0437\u0434\u0430\u043d\u0438\u0435", "type": "string", "format": "date-time"}, "start_at": {"title": "\u0412\u0440\u0435\u043c\u044f \u0437\u0430\u043f\u0443\u0441\u043a\u0430", "type": ["string", "null"], "format": "date-time"}, "finished_at": {"title": "\u0412\u0440\u0435\u043c\u044f \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u044f", "type": ["string", "null"], "format": "date-time"}, "text": {"title": "\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442", "type": "string"}, "callback": {"title": "CallBack URL", "type": "string", "maxLength": 200}}} |
676781fc-8f1b-482a-b676-554c00879b8d/52d059e3-f1de-4869-9f04-73e35a425f04/0/0 | Gerwin AI Beta | Tools for copywriting. Writing (generation) of texts, text rewriting, writing content for social networks. Creating advertisements and real estate listings and more | null | Ререйт текста | Данный метод задействует навык «Ререйт текста» | 400 | null | {"code": "", "message": ""} | {"required": ["code", "message"], "type": "object", "properties": {"code": {"title": "Code", "type": "string", "minLength": 1}, "message": {"title": "Message", "type": "string", "minLength": 1}}} |
676781fc-8f1b-482a-b676-554c00879b8d/52d059e3-f1de-4869-9f04-73e35a425f04/1/0 | Gerwin AI Beta | Tools for copywriting. Writing (generation) of texts, text rewriting, writing content for social networks. Creating advertisements and real estate listings and more | null | Ререйт текста | Данный метод задействует навык «Ререйт текста» | 200 | null | {"id": "", "status": "wait", "status_text": "", "code": "", "created_at": "", "start_at": "", "finished_at": "", "text": "", "callback": ""} | {"required": ["code"], "type": "object", "properties": {"id": {"title": "Id", "type": "string", "format": "uuid"}, "status": {"title": "\u0421\u0442\u0430\u0442\u0443\u0441", "type": "string", "enum": ["wait", "process", "success", "error"]}, "status_text": {"title": "Status text", "type": "string"}, "code": {"title": "\u041a\u043e\u0434 \u0437\u0430\u0434\u0430\u0447\u0438", "type": "string", "maxLength": 255, "minLength": 1}, "created_at": {"title": "C\u043e\u0437\u0434\u0430\u043d\u0438\u0435", "type": "string", "format": "date-time"}, "start_at": {"title": "\u0412\u0440\u0435\u043c\u044f \u0437\u0430\u043f\u0443\u0441\u043a\u0430", "type": ["string", "null"], "format": "date-time"}, "finished_at": {"title": "\u0412\u0440\u0435\u043c\u044f \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u044f", "type": ["string", "null"], "format": "date-time"}, "text": {"title": "\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442", "type": "string"}, "callback": {"title": "CallBack URL", "type": "string", "maxLength": 200}}} |
676781fc-8f1b-482a-b676-554c00879b8d/ff47a6cf-5fa9-4456-9ead-174b90ce3b9f/0/0 | Gerwin AI Beta | Tools for copywriting. Writing (generation) of texts, text rewriting, writing content for social networks. Creating advertisements and real estate listings and more | null | Заголовок страницы товара | Данный метод задействует навык «Заголовок страницы товара» | 400 | null | {"code": "", "message": ""} | {"required": ["code", "message"], "type": "object", "properties": {"code": {"title": "Code", "type": "string", "minLength": 1}, "message": {"title": "Message", "type": "string", "minLength": 1}}} |
676781fc-8f1b-482a-b676-554c00879b8d/ff47a6cf-5fa9-4456-9ead-174b90ce3b9f/1/0 | Gerwin AI Beta | Tools for copywriting. Writing (generation) of texts, text rewriting, writing content for social networks. Creating advertisements and real estate listings and more | null | Заголовок страницы товара | Данный метод задействует навык «Заголовок страницы товара» | 200 | null | {"id": "", "status": "wait", "status_text": "", "code": "", "created_at": "", "start_at": "", "finished_at": "", "text": "", "callback": ""} | {"required": ["code"], "type": "object", "properties": {"id": {"title": "Id", "type": "string", "format": "uuid"}, "status": {"title": "\u0421\u0442\u0430\u0442\u0443\u0441", "type": "string", "enum": ["wait", "process", "success", "error"]}, "status_text": {"title": "Status text", "type": "string"}, "code": {"title": "\u041a\u043e\u0434 \u0437\u0430\u0434\u0430\u0447\u0438", "type": "string", "maxLength": 255, "minLength": 1}, "created_at": {"title": "C\u043e\u0437\u0434\u0430\u043d\u0438\u0435", "type": "string", "format": "date-time"}, "start_at": {"title": "\u0412\u0440\u0435\u043c\u044f \u0437\u0430\u043f\u0443\u0441\u043a\u0430", "type": ["string", "null"], "format": "date-time"}, "finished_at": {"title": "\u0412\u0440\u0435\u043c\u044f \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u044f", "type": ["string", "null"], "format": "date-time"}, "text": {"title": "\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442", "type": "string"}, "callback": {"title": "CallBack URL", "type": "string", "maxLength": 200}}} |
676781fc-8f1b-482a-b676-554c00879b8d/2172eb03-719a-485d-a909-bbd0825df836/0/0 | Gerwin AI Beta | Tools for copywriting. Writing (generation) of texts, text rewriting, writing content for social networks. Creating advertisements and real estate listings and more | null | Заголовок для статьи | Данный метод задействует навык «Заголовок для статьи» | 200 | null | {"id": "", "status": "wait", "status_text": "", "code": "", "created_at": "", "start_at": "", "finished_at": "", "text": "", "callback": ""} | {"required": ["code"], "type": "object", "properties": {"id": {"title": "Id", "type": "string", "format": "uuid"}, "status": {"title": "\u0421\u0442\u0430\u0442\u0443\u0441", "type": "string", "enum": ["wait", "process", "success", "error"]}, "status_text": {"title": "Status text", "type": "string"}, "code": {"title": "\u041a\u043e\u0434 \u0437\u0430\u0434\u0430\u0447\u0438", "type": "string", "maxLength": 255, "minLength": 1}, "created_at": {"title": "C\u043e\u0437\u0434\u0430\u043d\u0438\u0435", "type": "string", "format": "date-time"}, "start_at": {"title": "\u0412\u0440\u0435\u043c\u044f \u0437\u0430\u043f\u0443\u0441\u043a\u0430", "type": ["string", "null"], "format": "date-time"}, "finished_at": {"title": "\u0412\u0440\u0435\u043c\u044f \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u044f", "type": ["string", "null"], "format": "date-time"}, "text": {"title": "\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442", "type": "string"}, "callback": {"title": "CallBack URL", "type": "string", "maxLength": 200}}} |
676781fc-8f1b-482a-b676-554c00879b8d/2172eb03-719a-485d-a909-bbd0825df836/1/0 | Gerwin AI Beta | Tools for copywriting. Writing (generation) of texts, text rewriting, writing content for social networks. Creating advertisements and real estate listings and more | null | Заголовок для статьи | Данный метод задействует навык «Заголовок для статьи» | 400 | null | {"code": "", "message": ""} | {"required": ["code", "message"], "type": "object", "properties": {"code": {"title": "Code", "type": "string", "minLength": 1}, "message": {"title": "Message", "type": "string", "minLength": 1}}} |
676781fc-8f1b-482a-b676-554c00879b8d/6fab8c38-9e66-44cf-b285-d86a70e8d83c/0/0 | Gerwin AI Beta | Tools for copywriting. Writing (generation) of texts, text rewriting, writing content for social networks. Creating advertisements and real estate listings and more | null | Задача | Данный метод поможет проверить статус выполнения задачи и ее результат | 200 | null | {"id": "", "status": "wait", "status_text": "", "code": "", "created_at": "", "start_at": "", "finished_at": "", "text": "", "callback": ""} | {"required": ["code"], "type": "object", "properties": {"id": {"title": "Id", "type": "string", "format": "uuid"}, "status": {"title": "\u0421\u0442\u0430\u0442\u0443\u0441", "type": "string", "enum": ["wait", "process", "success", "error"]}, "status_text": {"title": "Status text", "type": "string"}, "code": {"title": "\u041a\u043e\u0434 \u0437\u0430\u0434\u0430\u0447\u0438", "type": "string", "maxLength": 255, "minLength": 1}, "created_at": {"title": "C\u043e\u0437\u0434\u0430\u043d\u0438\u0435", "type": "string", "format": "date-time"}, "start_at": {"title": "\u0412\u0440\u0435\u043c\u044f \u0437\u0430\u043f\u0443\u0441\u043a\u0430", "type": ["string", "null"], "format": "date-time"}, "finished_at": {"title": "\u0412\u0440\u0435\u043c\u044f \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u044f", "type": ["string", "null"], "format": "date-time"}, "text": {"title": "\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442", "type": "string"}, "callback": {"title": "CallBack URL", "type": "string", "maxLength": 200}}} |
676781fc-8f1b-482a-b676-554c00879b8d/6fab8c38-9e66-44cf-b285-d86a70e8d83c/1/0 | Gerwin AI Beta | Tools for copywriting. Writing (generation) of texts, text rewriting, writing content for social networks. Creating advertisements and real estate listings and more | null | Задача | Данный метод поможет проверить статус выполнения задачи и ее результат | 400 | null | {"code": "", "message": ""} | {"required": ["code", "message"], "type": "object", "properties": {"code": {"title": "Code", "type": "string", "minLength": 1}, "message": {"title": "Message", "type": "string", "minLength": 1}}} |
676781fc-8f1b-482a-b676-554c00879b8d/ba32a5d3-ca3c-426b-8e5d-d9c08b1dcd95/0/0 | Gerwin AI Beta | Tools for copywriting. Writing (generation) of texts, text rewriting, writing content for social networks. Creating advertisements and real estate listings and more | null | Несколько абзацев для статьи | Данный метод задействует навык «Несколько абзацев для статьи» | 400 | null | {"code": "", "message": ""} | {"required": ["code", "message"], "type": "object", "properties": {"code": {"title": "Code", "type": "string", "minLength": 1}, "message": {"title": "Message", "type": "string", "minLength": 1}}} |
676781fc-8f1b-482a-b676-554c00879b8d/ba32a5d3-ca3c-426b-8e5d-d9c08b1dcd95/1/0 | Gerwin AI Beta | Tools for copywriting. Writing (generation) of texts, text rewriting, writing content for social networks. Creating advertisements and real estate listings and more | null | Несколько абзацев для статьи | Данный метод задействует навык «Несколько абзацев для статьи» | 200 | null | {"id": "", "status": "wait", "status_text": "", "code": "", "created_at": "", "start_at": "", "finished_at": "", "text": "", "callback": ""} | {"required": ["code"], "type": "object", "properties": {"id": {"title": "Id", "type": "string", "format": "uuid"}, "status": {"title": "\u0421\u0442\u0430\u0442\u0443\u0441", "type": "string", "enum": ["wait", "process", "success", "error"]}, "status_text": {"title": "Status text", "type": "string"}, "code": {"title": "\u041a\u043e\u0434 \u0437\u0430\u0434\u0430\u0447\u0438", "type": "string", "maxLength": 255, "minLength": 1}, "created_at": {"title": "C\u043e\u0437\u0434\u0430\u043d\u0438\u0435", "type": "string", "format": "date-time"}, "start_at": {"title": "\u0412\u0440\u0435\u043c\u044f \u0437\u0430\u043f\u0443\u0441\u043a\u0430", "type": ["string", "null"], "format": "date-time"}, "finished_at": {"title": "\u0412\u0440\u0435\u043c\u044f \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u044f", "type": ["string", "null"], "format": "date-time"}, "text": {"title": "\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442", "type": "string"}, "callback": {"title": "CallBack URL", "type": "string", "maxLength": 200}}} |
676781fc-8f1b-482a-b676-554c00879b8d/69c0ff23-dc28-436e-a4d0-e220d4c657b2/0/0 | Gerwin AI Beta | Tools for copywriting. Writing (generation) of texts, text rewriting, writing content for social networks. Creating advertisements and real estate listings and more | null | Описание товара | Данный метод задействует навык «Описание товара» | 200 | null | {"id": "", "status": "wait", "status_text": "", "code": "", "created_at": "", "start_at": "", "finished_at": "", "text": "", "callback": ""} | {"required": ["code"], "type": "object", "properties": {"id": {"title": "Id", "type": "string", "format": "uuid"}, "status": {"title": "\u0421\u0442\u0430\u0442\u0443\u0441", "type": "string", "enum": ["wait", "process", "success", "error"]}, "status_text": {"title": "Status text", "type": "string"}, "code": {"title": "\u041a\u043e\u0434 \u0437\u0430\u0434\u0430\u0447\u0438", "type": "string", "maxLength": 255, "minLength": 1}, "created_at": {"title": "C\u043e\u0437\u0434\u0430\u043d\u0438\u0435", "type": "string", "format": "date-time"}, "start_at": {"title": "\u0412\u0440\u0435\u043c\u044f \u0437\u0430\u043f\u0443\u0441\u043a\u0430", "type": ["string", "null"], "format": "date-time"}, "finished_at": {"title": "\u0412\u0440\u0435\u043c\u044f \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u044f", "type": ["string", "null"], "format": "date-time"}, "text": {"title": "\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442", "type": "string"}, "callback": {"title": "CallBack URL", "type": "string", "maxLength": 200}}} |
676781fc-8f1b-482a-b676-554c00879b8d/69c0ff23-dc28-436e-a4d0-e220d4c657b2/1/0 | Gerwin AI Beta | Tools for copywriting. Writing (generation) of texts, text rewriting, writing content for social networks. Creating advertisements and real estate listings and more | null | Описание товара | Данный метод задействует навык «Описание товара» | 400 | null | {"code": "", "message": ""} | {"required": ["code", "message"], "type": "object", "properties": {"code": {"title": "Code", "type": "string", "minLength": 1}, "message": {"title": "Message", "type": "string", "minLength": 1}}} |
676781fc-8f1b-482a-b676-554c00879b8d/a5ad4b58-7d86-4483-afa1-b4f6332af3ac/0/0 | Gerwin AI Beta | Tools for copywriting. Writing (generation) of texts, text rewriting, writing content for social networks. Creating advertisements and real estate listings and more | null | Вход в аккаунт | Данный метод позволяет аутентифицировать пользователя и получить токен | 201 | null | {"password": "", "email": ""} | {"type": "object", "properties": {"password": {"title": "Password", "type": "string", "minLength": 1}, "email": {"title": "Email", "type": "string", "minLength": 1}}} |
f6ca8475-c820-4294-8384-d5a034b9b91c/d6d47ebf-dba8-4221-a60d-bc7be804182d/0/0 | Text Diff | Compare 2 strings/texts and determine the differences between them. The API provides both an easy to process json version to work with and a pre-rendered result for html and cli output. | 8.9 | Compare Texts | Compare 2 strings/texts and get the differences between them. | 413 | example-1 | {"error": "text2 must not have more then 50000 characters (has 87147)"} | {"description": "", "type": "object", "properties": {"error": {"type": "string", "minLength": 1}}, "required": ["error"], "x-examples": {"example-1": {"error": "text2 must not have more then 50000 characters (has 87147)"}}} |
f6ca8475-c820-4294-8384-d5a034b9b91c/d6d47ebf-dba8-4221-a60d-bc7be804182d/1/0 | Text Diff | Compare 2 strings/texts and determine the differences between them. The API provides both an easy to process json version to work with and a pre-rendered result for html and cli output. | 8.9 | Compare Texts | Compare 2 strings/texts and get the differences between them. | 400 | example-1 | {"error": "could not parse json: invalid character '\\n' in string literal"} | {"description": "", "type": "object", "properties": {"error": {"type": "string", "minLength": 1}}, "required": ["error"], "x-examples": {"example-1": {"error": "could not parse json: invalid character '\\n' in string literal"}}} |
f6ca8475-c820-4294-8384-d5a034b9b91c/d6d47ebf-dba8-4221-a60d-bc7be804182d/2/0 | Text Diff | Compare 2 strings/texts and determine the differences between them. The API provides both an easy to process json version to work with and a pre-rendered result for html and cli output. | 8.9 | Compare Texts | Compare 2 strings/texts and get the differences between them. | 200 | example-1 | {"diffs": [{"type": "eq", "text": "Lorem ipsum "}, {"type": "del", "text": "d"}, {"type": "add", "text": "D"}, {"type": "eq", "text": "olor "}, {"type": "del", "text": "sit "}, {"type": "eq", "text": "amet"}], "html": "<span>Lorem ipsum </span><del style=\"background:#ffe6e6;\">d</del><ins style=\"background:#e6ffe6;\">D</ins><span>olor </span><del style=\"background:#ffe6e6;\">sit </del><span>amet</span>", "cli": "TG9yZW0gaXBzdW0gG1szMW1kG1swbRtbMzJtRBtbMG1vbG9yIBtbMzFtc2l0IBtbMG1hbWV0"} | {"type": "object", "x-examples": {"example-1": {"diffs": [{"type": "eq", "text": "Lorem ipsum "}, {"type": "del", "text": "d"}, {"type": "add", "text": "D"}, {"type": "eq", "text": "olor "}, {"type": "del", "text": "sit "}, {"type": "eq", "text": "amet"}], "html": "<span>Lorem ipsum </span><del style=\"background:#ffe6e6;\">d</del><ins style=\"background:#e6ffe6;\">D</ins><span>olor </span><del style=\"background:#ffe6e6;\">sit </del><span>amet</span>", "cli": "TG9yZW0gaXBzdW0gG1szMW1kG1swbRtbMzJtRBtbMG1vbG9yIBtbMzFtc2l0IBtbMG1hbWV0"}}, "properties": {"diffs": {"type": "array", "uniqueItems": true, "minItems": 1, "items": {"type": "object", "properties": {"type": {"type": "string", "minLength": 1, "maxLength": 3, "enum": ["eq", "del", "add"]}, "text": {"type": "string", "minLength": 1}}, "required": ["type", "text"]}}, "html": {"type": "string", "minLength": 1}, "cli": {"type": "string", "minLength": 1, "description": "base64 encoded string for colored cli output"}}, "required": ["diffs"]} |
6fe50519-e1b5-4c47-96b0-3ff1754b406b/f33c22fc-0313-4c44-a71a-0586701582ac/0/0 | Text Summarizer | Connexun's "Text Summarizer" API generates an extractive summary from any given text. Test our api for free and do not hesitate to reach us out for further information. | 2.1 | /summarize | Summarizes a valid input content and returns the highest ranked sentences from the text. These sentences in the order of appearence in the main text are then combined, which represents the most weighted sentences of the text also called summary. | 200 | Example_1 | {"language": "en", "sentenceLength": 2, "summary": "The short version of the story is that the company\u2019s Kinesis service, which is used directly by customers and underpins other parts of AWS\u2019 own operations, added more capacity. But it was only possible to bring \u201ca few hundred\u201d servers back at a time, and as we\u2019ve seen above Kinesis uses \u201cmany thousands of servers\u201d.", "sentenceRanked": "enum:[ [ 1, \"The short version of the story is that the company\u2019s Kinesis service, which is used directly by customers and underpins other parts of AWS\u2019 own operations, added more capacity.\" ], [ 5, \"But it was only possible to bring \u201ca few hundred\u201d servers back at a time, and as we\u2019ve seen above Kinesis uses \u201cmany thousands of servers\u201d.\" ] ]"} | {"properties": {"language": {"description": "Two letter language code of the language detected in the text.", "type": "string"}, "sentenceLength": {"description": "Number of output sentences that are present in the final summary", "type": "integer"}, "summary": {"description": "Summary of the text generated.", "type": "string"}}, "title": "SummarySuccessSchema", "type": "object"} |
6fe50519-e1b5-4c47-96b0-3ff1754b406b/f33c22fc-0313-4c44-a71a-0586701582ac/1/0 | Text Summarizer | Connexun's "Text Summarizer" API generates an extractive summary from any given text. Test our api for free and do not hesitate to reach us out for further information. | 2.1 | /summarize | Summarizes a valid input content and returns the highest ranked sentences from the text. These sentences in the order of appearence in the main text are then combined, which represents the most weighted sentences of the text also called summary. | 400 | Example_1 | {"message": ""} | {"properties": {"message": {"type": "string"}}, "title": "Error Schema", "type": "object"} |
d7ab5bef-7bcf-439f-bd8d-0b642278d79b/9ecc4683-0904-4f9b-a713-edf649acf333/1/0 | Article Data Extraction and Summarization | Extracts clean text and other meaningful data from news, blogs, articles, and other pages. Supports all languages
Summarizes text using semantic analyze. Supports all languages | 9.4 | /summary | Summarize text | 200 | Example_1 | {"summary": "Summary of text", "language": ""} | {"type": "object", "required": ["summary", "language"], "properties": {"summary": {"type": "string"}, "language": {"type": ["string", "null"]}}} |
d7ab5bef-7bcf-439f-bd8d-0b642278d79b/21ce4406-b65c-49ff-bb11-2b169ae62585/0/0 | Article Data Extraction and Summarization | Extracts clean text and other meaningful data from news, blogs, articles, and other pages. Supports all languages
Summarizes text using semantic analyze. Supports all languages | 9.4 | /article | Extract text from url | 200 | Example_1 | {"article": {"source_url": "", "published": "", "published_method_found": "", "published_guess_accuracy": "", "title": "", "text": "", "authors": [], "images": [], "top_image": "", "meta_image": "", "movies": [], "meta_keywords": [], "tags": [], "meta_description": "", "meta_lang": "", "title_lang": "", "text_lang": "", "meta_favicon": "", "summary": ""}} | {"type": "object", "required": ["article"], "properties": {"article": {"type": "object", "required": ["source_url", "published", "published_method_found", "published_guess_accuracy", "title", "text", "authors", "images", "top_image", "meta_image", "movies", "meta_keywords", "tags", "meta_description", "meta_lang", "title_lang", "text_lang", "meta_favicon"], "properties": {"source_url": {"type": "string"}, "published": {"type": ["string", "null"]}, "published_method_found": {"type": "string"}, "published_guess_accuracy": {"type": ["string", "null"]}, "title": {"type": "string"}, "text": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "images": {"type": "array", "items": {"type": "string"}}, "top_image": {"type": "string"}, "meta_image": {"type": "string"}, "movies": {"type": "array", "items": {"type": "string"}}, "meta_keywords": {"type": "array", "items": {"type": "string"}}, "tags": {"type": "array", "items": {"type": "string"}}, "meta_description": {"type": "string"}, "meta_lang": {"type": ["string", "null"]}, "title_lang": {"type": ["string", "null"]}, "text_lang": {"type": ["string", "null"]}, "meta_favicon": {"type": "string"}, "summary": {"type": "string"}}}}} |
c86ce12f-7091-474a-98db-2772f6739555/3fae3d9e-1693-4633-8d62-837979ef4b25/0/0 | The Best Keyword Density Analyzer -100 percent accuracy approved | A keyword density tool that is built for the fastest and 100% accurate response. Optimizing the keyword density will boost the visibility as well as the ranking on search engine results page. An analyzer like never before. Just tap, proceed and voila! | null | Keyword Density Analyzer | Analyze keyword Density in the given Passage | 200 | Response | [{"One word": [{"count": 3, "density": 9.67741935483871, "keyword": "neem"}, {"count": 2, "density": 6.451612903225806, "keyword": "comes"}, {"count": 2, "density": 6.451612903225806, "keyword": "tree"}, {"count": 1, "density": 3.225806451612903, "keyword": "natural"}, {"count": 1, "density": 3.225806451612903, "keyword": "herb"}, {"count": 1, "density": 3.225806451612903, "keyword": "names"}, {"count": 1, "density": 3.225806451612903, "keyword": "include"}, {"count": 1, "density": 3.225806451612903, "keyword": "azadirachta"}, {"count": 1, "density": 3.225806451612903, "keyword": "indica"}, {"count": 1, "density": 3.225806451612903, "keyword": "indian"}, {"count": 1, "density": 3.225806451612903, "keyword": "lilac"}, {"count": 1, "density": 3.225806451612903, "keyword": "extract"}, {"count": 1, "density": 3.225806451612903, "keyword": "seeds"}, {"count": 1, "density": 3.225806451612903, "keyword": "many"}, {"count": 1, "density": 3.225806451612903, "keyword": "different"}, {"count": 1, "density": 3.225806451612903, "keyword": "traditional"}, {"count": 1, "density": 3.225806451612903, "keyword": "uses"}, {"count": 1, "density": 3.225806451612903, "keyword": "known"}, {"count": 1, "density": 3.225806451612903, "keyword": "pesticidal"}, {"count": 1, "density": 3.225806451612903, "keyword": "insecticidal"}, {"count": 1, "density": 3.225806451612903, "keyword": "properties"}, {"count": 1, "density": 3.225806451612903, "keyword": "people"}, {"count": 1, "density": 3.225806451612903, "keyword": "also"}, {"count": 1, "density": 3.225806451612903, "keyword": "use"}, {"count": 1, "density": 3.225806451612903, "keyword": "hair"}, {"count": 1, "density": 3.225806451612903, "keyword": "dental"}, {"count": 1, "density": 3.225806451612903, "keyword": "products"}]}, {"Two word": [{"count": 1, "density": 3.3333333333333335, "keyword": "neem natural"}, {"count": 1, "density": 3.3333333333333335, "keyword": "natural herb"}, {"count": 1, "density": 3.3333333333333335, "keyword": "herb comes"}, {"count": 1, "density": 3.3333333333333335, "keyword": "comes neem"}, {"count": 1, "density": 3.3333333333333335, "keyword": "neem tree"}, {"count": 1, "density": 3.3333333333333335, "keyword": "tree names"}, {"count": 1, "density": 3.3333333333333335, "keyword": "names include"}, {"count": 1, "density": 3.3333333333333335, "keyword": "include azadirachta"}, {"count": 1, "density": 3.3333333333333335, "keyword": "azadirachta indica"}, {"count": 1, "density": 3.3333333333333335, "keyword": "indica indian"}, {"count": 1, "density": 3.3333333333333335, "keyword": "indian lilac"}, {"count": 1, "density": 3.3333333333333335, "keyword": "lilac extract"}, {"count": 1, "density": 3.3333333333333335, "keyword": "extract comes"}, {"count": 1, "density": 3.3333333333333335, "keyword": "comes seeds"}, {"count": 1, "density": 3.3333333333333335, "keyword": "seeds tree"}, {"count": 1, "density": 3.3333333333333335, "keyword": "tree many"}, {"count": 1, "density": 3.3333333333333335, "keyword": "many different"}, {"count": 1, "density": 3.3333333333333335, "keyword": "different traditional"}, {"count": 1, "density": 3.3333333333333335, "keyword": "traditional uses"}, {"count": 1, "density": 3.3333333333333335, "keyword": "uses neem"}, {"count": 1, "density": 3.3333333333333335, "keyword": "neem known"}, {"count": 1, "density": 3.3333333333333335, "keyword": "known pesticidal"}, {"count": 1, "density": 3.3333333333333335, "keyword": "pesticidal insecticidal"}, {"count": 1, "density": 3.3333333333333335, "keyword": "insecticidal properties"}, {"count": 1, "density": 3.3333333333333335, "keyword": "properties people"}, {"count": 1, "density": 3.3333333333333335, "keyword": "people also"}, {"count": 1, "density": 3.3333333333333335, "keyword": "also use"}, {"count": 1, "density": 3.3333333333333335, "keyword": "use hair"}, {"count": 1, "density": 3.3333333333333335, "keyword": "hair dental"}, {"count": 1, "density": 3.3333333333333335, "keyword": "dental products"}]}, {"Three word": [{"count": 1, "density": 3.4482758620689653, "keyword": "neem natural herb"}, {"count": 1, "density": 3.4482758620689653, "keyword": "natural herb comes"}, {"count": 1, "density": 3.4482758620689653, "keyword": "herb comes neem"}, {"count": 1, "density": 3.4482758620689653, "keyword": "comes neem tree"}, {"count": 1, "density": 3.4482758620689653, "keyword": "neem tree names"}, {"count": 1, "density": 3.4482758620689653, "keyword": "tree names include"}, {"count": 1, "density": 3.4482758620689653, "keyword": "names include azadirachta"}, {"count": 1, "density": 3.4482758620689653, "keyword": "include azadirachta indica"}, {"count": 1, "density": 3.4482758620689653, "keyword": "azadirachta indica indian"}, {"count": 1, "density": 3.4482758620689653, "keyword": "indica indian lilac"}, {"count": 1, "density": 3.4482758620689653, "keyword": "indian lilac extract"}, {"count": 1, "density": 3.4482758620689653, "keyword": "lilac extract comes"}, {"count": 1, "density": 3.4482758620689653, "keyword": "extract comes seeds"}, {"count": 1, "density": 3.4482758620689653, "keyword": "comes seeds tree"}, {"count": 1, "density": 3.4482758620689653, "keyword": "seeds tree many"}, {"count": 1, "density": 3.4482758620689653, "keyword": "tree many different"}, {"count": 1, "density": 3.4482758620689653, "keyword": "many different traditional"}, {"count": 1, "density": 3.4482758620689653, "keyword": "different traditional uses"}, {"count": 1, "density": 3.4482758620689653, "keyword": "traditional uses neem"}, {"count": 1, "density": 3.4482758620689653, "keyword": "uses neem known"}, {"count": 1, "density": 3.4482758620689653, "keyword": "neem known pesticidal"}, {"count": 1, "density": 3.4482758620689653, "keyword": "known pesticidal insecticidal"}, {"count": 1, "density": 3.4482758620689653, "keyword": "pesticidal insecticidal properties"}, {"count": 1, "density": 3.4482758620689653, "keyword": "insecticidal properties people"}, {"count": 1, "density": 3.4482758620689653, "keyword": "properties people also"}, {"count": 1, "density": 3.4482758620689653, "keyword": "people also use"}, {"count": 1, "density": 3.4482758620689653, "keyword": "also use hair"}, {"count": 1, "density": 3.4482758620689653, "keyword": "use hair dental"}, {"count": 1, "density": 3.4482758620689653, "keyword": "hair dental products"}]}] | {"$schema": "http://json-schema.org/schema#", "type": "array", "items": {"type": "object", "properties": {"One word": {"type": "array", "items": {"type": "object", "properties": {"count": {"type": "integer"}, "density": {"type": "number"}, "keyword": {"type": "string"}}, "required": ["count", "density", "keyword"]}}, "Two word": {"type": "array", "items": {"type": "object", "properties": {"count": {"type": "integer"}, "density": {"type": "number"}, "keyword": {"type": "string"}}, "required": ["count", "density", "keyword"]}}, "Three word": {"type": "array", "items": {"type": "object", "properties": {"count": {"type": "integer"}, "density": {"type": "number"}, "keyword": {"type": "string"}}, "required": ["count", "density", "keyword"]}}}}} |
d3ff8d59-f200-441e-be55-4262a6ab62c9/641b5a31-e4af-4848-ba8d-746e767e1a1b/0/0 | Text Data Parser | An API which converts natural language input into structured data which can be used for data mining and consumed by machines. It is useful for extracting entities from user inputs while you are building apps such as chatbot or text data mining through Natural Language Processing(NLP). | null | parse | It converts text into structured data. | 200 | Response | [{"body": "2 miles", "start": 21, "value": {"value": 2, "type": "value", "unit": "mile"}, "end": 28, "dim": "distance", "latent": false}, {"body": "at 9 a.m. tomorrow", "start": 58, "value": {"values": [{"value": "2022-10-02T09:00:00.000-07:00", "grain": "hour", "type": "value"}], "value": "2022-10-02T09:00:00.000-07:00", "grain": "hour", "type": "value"}, "end": 76, "dim": "time", "latent": false}] | {"type": "array", "items": {"type": "object", "properties": {"body": {"type": "string"}, "start": {"type": "integer"}, "value": {"type": "object"}, "end": {"type": "integer"}, "dim": {"type": "string"}, "latent": {"type": "boolean"}}}} |
9cf069da-e6c3-46c4-badf-6a593bbe0140/a78470c6-5f34-43a7-90bb-3838ff93e5ac/0/0 | PatentEye | Advanced patent data search and topic analysis leveraging NLP | null | Get Patents - Authors | Get existing patents for a given Author based on Author Id | 422 | Example_1 | {"detail": [{"loc": [], "msg": "", "type": ""}]} | {"title": "HTTPValidationError", "type": "object", "properties": {"detail": {"title": "Detail", "type": "array", "items": {"title": "ValidationError", "required": ["loc", "msg", "type"], "type": "object", "properties": {"loc": {"title": "Location", "type": "array", "items": {"type": "string"}}, "msg": {"title": "Message", "type": "string"}, "type": {"title": "Error Type", "type": "string"}}}}}} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.